Skip to content

Instantly share code, notes, and snippets.

@JoaoCnh
Last active February 1, 2020 21:45
js map example
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