What size?

Report a typo

There are two correct snippets of code inside 'library.js'. Your task is to find them!

A)

// library.js
export function getSize() {
  //...
}

export default function getElements() {
  //...
}

export default function sizesList() {
  //...
}

B)

// library.js
export function getSize() {
  //...
}

export function getElements() {
  //...
}

export default function sizesList() {
  //...
}

C)

// library.js
export default function getSize() {
  //...
}

export default function getElements() {
  //...
}

export default function sizesList() {
  //...
}

D)

// library.js
export function getSize() {
  //...
}

export function getElements() {
  //...
}

export function sizesList() {
  //...
}
Select one or more options from the list
___

Create a free account to access the full topic