set object key value javascript code example
Example 1: variable key name js
//You need to make the object first, then use [] to set it.
var key = "happyCount";
var obj = {};
obj[key] = someValueArray;
myArray.push(obj);
Example 2: javascript create object key from variable
//For ES6 and Babel
{
[yourKeyVariable]: "yourValue",
}
// ES5 Alternative
// Create the object first, then use [] to set your variable as a key
var yourObject = {};
yourObject[yourKeyVariable] = "yourValue";
Example 3: javascript set object key as variable
let variableKey = "exampleKey"
let variableValue = "exampleValue"
//Add brackets around variableKey
let data = {
[variableKey] : variableValue
}
console.log(data)
//Return {"exampleKey": "exampleValue"}