Skip to content

Instantly share code, notes, and snippets.

@Park-Developer
Created June 23, 2021 14:46
Show Gist options
  • Save Park-Developer/634e2a7b76c53dd5d4a4699c88bc8048 to your computer and use it in GitHub Desktop.
Save Park-Developer/634e2a7b76c53dd5d4a4699c88bc8048 to your computer and use it in GitHub Desktop.
object in array
var arr = [];
for(i=1; i<11; i++){
var keyName = "count"+i
var count = Math.floor(Math.random()*1000);
var obj = new Object();
obj[keyName] = count;
arr.push(obj);
}
arr.forEach(function(value){
console.log(value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment