...

/

Challenge: Going Loopy Over Arrays

Challenge: Going Loopy Over Arrays

Solve tasks regarding loops in arrays in JavaScript.

We'll cover the following...

Task 1

Write a function that accepts an array of strings as an argument and uses map to return a new array of the same words written in uppercase.

Sample input 1:

['Hello']

Expected output: ...