I am a creative and innovative problem solver who enjoys working collaboratively with designers and ...
first create an array of objects
var arr = {'name': []};
next, push the value to the object.
var val = 2; arr['name'].push(val);
after write in console :
console.log(arr.name[0]);
Auto Sync....
Select Categories