scrimba
Arrow functions, Map & Filter
Map
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Map
Expand for more info
index.js
run
preview
console
// Using Array.map
// map: from a collection to a new collection of the same size.

const testWord = "JavaScript"
const words = ["Banana", "pencil", "variableName", "COFFEE"]

// We want to know the length of each word

// We want all words to be in ALLCAPS

// We want to all words to be completely lowercase

// We went to create string to learn the alphabet like:
// B for Banana, P for pencil
Console
index.html
-10:32