Created
February 14, 2018 09:22
-
-
Save JoaoCnh/41b14652f054b807e20c777a81ef509c to your computer and use it in GitHub Desktop.
js song object
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
const songs = [ | |
{ | |
id: 1, | |
name: "Curl of the Burl", | |
artist: "Mastodon", | |
}, | |
{ | |
id: 2, | |
name: "Oblivion", | |
artist: "Mastodon", | |
}, | |
{ | |
id: 3, | |
name: "Flying Whales", | |
artist: "Gojira", | |
}, | |
{ | |
id: 4, | |
name: "L'Enfant Sauvage", | |
artist: "Gojira", | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment