用其他变量命名变量

时间:2019-01-04 14:47:39

标签: javascript html css variables

我的目标是使用其他变量的内容/字符串来命名新变量。

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"

希望可以解释这一点,谢谢您的答复!

1 个答案:

答案 0 :(得分:0)

您可以使用关联数组:

var something=[];
something["example" + 1] = "hello"

console.log(something["example1"]) => "hello"