如何在JavaScript中使用用户定义的名称创建对象?

时间:2019-07-05 10:07:11

标签: javascript variables

 var a= "user passed name/ value from run time" // assume it is: xValue
 var xValue="some value" //x must be value of a
 //ie "user passed name/ value from run time" = some value

在x等于a的值时如何实现?

1 个答案:

答案 0 :(得分:0)

var a="xValue";
this[a]="some value"; //window[a] if scope of this is not global.
console.log(xValue);

这就是我想要的。经过一整天的努力,我终于明白了。