I have a simple code like this:
var name = 'line1';
var obj = {};
obj.name = [0, 1];
console.log(obj);
Key of property is name. But I want to make key='line'. Can you help me?
|
I have a simple code like this:
Key of property is |
||||
|
|
|
If I understand correctly, and you want to use the value of the
Object properties can also be accessed with the same syntax arrays use. It is handy in situations like this one. |
|||
|
|
|
Try,
or
This is known as the bracket notation, and can be used to access any property of an object. |
|||
|
|