gpt4 book ai didi

javascript - JS - array.includes 问题

转载 作者:行者123 更新时间:2023-11-30 07:07:23 24 4
gpt4 key购买 nike

我有一个 JS 函数 array.includes 的问题。我有这个数组:

问题是当我使用这段代码时,什么也不会发生。

var array_type;
//array has these 2 values:
//array_type[0] == 0;
//array_type[1] == 2;
if (array_type.includes(2)) {
console.log("good");
}

你知道为什么吗?感谢您的帮助。

最佳答案

如果您使用的是 Internet Explorer,则 array.includes() 将不起作用。相反,您需要使用 indexOfInternet Explorer 不支持 Array.includes()

var array_type = [0, 2];

if (array_type.indexOf(2) !== -1) {
console.log("good");
}

References for includes()

References for indexOf()

检查链接中的浏览器兼容性部分

关于javascript - JS - array.includes 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48932254/

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