如何在javascript中增加变量名?

时间:2019-04-21 03:36:12

标签: javascript

我想要这个for循环的结果:

for(let i = 1; i<=5; i++){
  const name+i = i; // this is wrong, but a example for intended result
}

// result should be this:
// const name1 = 1;
// const name2 = 2;
// const name3 = 3;
// const name4 = 4;
// const name5 = 5;

1 个答案:

答案 0 :(得分:0)

您可以使用

 for(let i = 1; i<=5; i++){
      window['name'+i] = i; 
    }

for(let i = 1; i<=5; i++){
  window['name'+i] = i; 
}

console.log(name1)