gpt4 book ai didi

javascript 函数 inArray

转载 作者:可可西里 更新时间:2023-11-01 02:14:18 25 4
gpt4 key购买 nike

我需要一个 javascript 函数,它可以接受一个字符串和一个数组,如果该字符串在数组中则返回 true..

 function inArray(str, arr){
...
}

警告:它不能使用任何 javascript 框架。

最佳答案

你可以做一个数组原型(prototype)函数ala:

Array.prototype.hasValue = function(value) {
var i;
for (i=0; i<this.length; i++) { if (this[i] === value) return true; }
return false;
}

if (['test'].hasValue('test')) alert('Yay!');

请注意使用“===”而不是“==”,如果您需要不太具体的匹配,您可以更改它...否则 [3].hasValue('3') 将返回 false。

关于javascript 函数 inArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/890782/

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