If I do this,
var element = {};
alert(element);
element[name] = "stephen";
alert(element.name);
Why doesn't element.name work?
|
If I do this,
Why doesn't |
||||
|
|
|
When using bracket notation, (unless it's a variable) it needs to be in qoutes, like this:
You cant test it out here. To explain what I mean by "unless it's a variable", this would also work:
|
|||
|
|
|
Because name should be in quotes. This works:
|
|||
|
|
|
This is the reason why you may want to get an object's property dynamically. For example: You have a variable, but you can't be sure of its value. The server send you the variable value so you should write like this.
But if you want to set Think like |
||||
|
|