Menu
×
×
Correct!
Exercise:Complete the array method that will allow you to run a function on each item in the array and return a new array.
const myList = myArray.@(3)((item) => <p>{item}</p>)
const myList = myArray.map((item) => <p>{item}</p>)
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 24 exercises.
Are you sure you want to continue?