我想要这个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;
答案 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)