gpt4 book ai didi

javascript - 当我运行此代码时,它告诉我 AnimalIindex 未定义?

转载 作者:行者123 更新时间:2023-12-03 03:01:06 24 4
gpt4 key购买 nike

当我运行此代码时,它告诉我 animalIindex 未定义?

let animal = ['lion', 'snail', 'snake', 'tiger', 'sheep', 'frog', 'cheetah', 'leopard'];
for (let animalIndex = 0; animalIndex < animal.length; animalIndex++); {
console.log(animal[animalIndex]);
};

最佳答案

for (let animalIndex = 0; animalIndex < animal.length; animalIndex++);

如果你删除最后的分号那么它就会起作用,分号意味着你的语句已经完成,但直到 for 循环结束才完成

您关闭了 for 循环,因此animal[animalIndex] 中的animalIndex 未定义。

关于javascript - 当我运行此代码时,它告诉我 AnimalIindex 未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47384201/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com