scrimba
Learn Basic JavaScript
Manipulating Complex Objects
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

Manipulating Complex Objects
AboutCommentsNotes
Manipulating Complex Objects
Expand for more info
index.js
run
preview
console
var myMusic = [
{
"artist": "Billy Joel",
"title": "Piano Man",
"release_year": 1973,
"formats": [
"CD",
"8T",
"LP"
],
"gold": true
}
// Add record here
];
Console
"frank"
,
index.html
-1:40