-
-
Save barmao/38f5fad05de8efc8fc514dbbefa044eb to your computer and use it in GitHub Desktop.
js map example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var allSongNames = songs.map(function (song) { | |
| return song.name; | |
| }); | |
| // ES6 | |
| const allSongNames = songs.map(song => { | |
| return song.name; | |
| }); | |
| console.log(allSongNames); // ["Curl of the Burl","Oblivion","Flying Whales","L'Enfant Sauvage"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment