Basic JavaScript: Manipulating Complex Objects.
Basic JavaScript: Manipulating Complex Objects.
SOLUTION :IN this challenge , what you need to do is simply push element into array .although sentences at first might look difficult and tough, but it's preety easy.
Basic JavaScript: Manipulating Complex Objects.
var myMusic = [
{
"artist": "Billy Joel",
"title": "Piano Man",
"release_year": 1973,
"formats": [
"CD",
"8T",
"LP"
],
"gold": true
}
// Add record here
];
myMusic.push({
"artist":"aastha mishra",
"title":"love me if you could",
"release_year":2018,
"formats":[
"PENDRIVE",
"YOUTUBE",
"MYSAP"
]
}
);
Comments
Post a Comment