我的目标是使用其他变量的内容/字符串来命名新变量。
function foo(id) {
var example + id; // So basically add the id to the example variable making something like example1 etc...
}
foo(1)
example1 = "text"
console.log(example1) // And it logs "text"
希望可以解释这一点,谢谢您的答复!
答案 0 :(得分:0)
您可以使用关联数组:
var something=[];
something["example" + 1] = "hello"
console.log(something["example1"]) => "hello"