This question already has an answer here:
I am building some objects in JavaScript and pushing those objects into an array, I am storing the key I want to use in a variable then creating my objects like so:
var key = "happyCount";
myArray.push( { key : someValueArray } );
but when I try to examine my array of objects for every object the key is "key"
instead of the value of the variable key. Is there any way to set the value of the key from a variable?
Fiddle for better explanation: http://jsfiddle.net/Fr6eY/3/
You need to make the object first, then use
[]
to set it.UPDATE 2018:
If you're able to use ES6 and Babel, you can use this new feature:
Try something like this (check ES6 example at the end of answer)
example:
In ES6, you can do like this.