Answers for "javascript create object key from variable"

10

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);
Posted by: Guest on June-19-2020
8

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";
Posted by: Guest on September-28-2020

Code answers related to "javascript create object key from variable"

Code answers related to "Javascript"

Browse Popular Code Answers by Language