scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
The .map() Method Challenge
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

The .map() Method Challenge
AboutCommentsNotes
The .map() Method Challenge
Expand for more info
playlist.js
run
preview
console
export const playlistArr = [
{
title: 'Bohemian Rhapsody',
artist: 'Queen',
albumArt: 'bohemian-rhapsody.png'
},
{
title: 'As It Was',
artist: 'Harry Styles',
albumArt: 'as-it-was.png'
},
{
title: 'Stairway to Heaven',
artist: 'Led Zeppelin',
albumArt: 'stairway-to-heaven.png'
},
{
title: 'Therefore I Am',
artist: 'Billie Eilish',
albumArt: 'therefore-i-am.png'
}
]
Console
/index.html
-3:59