js append to json array code example
Example 1: push json into json
//create object
var myObj = {
"artist" : artist, //your artist variable
"song_name" : title //your title variable
};
//push the object to your array
favorites.push( myObj );
Example 2: javascript append to json
let test = {
name: 'NN',
email: '[email protected]'
};
test.phone = '234654234';
// result { "name": "NN", "email": "[email protected]", "phone": "234654234" }