我有一个数组tempArray = ["Kathmandu","Pokhara","Dharan"]
。为了确保“博卡拉”在tempArry中,我必须使用循环并检查tempArray的每个元素。
有没有办法实现Ruby的Array.include?
以便我不需要使用循环?
答案 0 :(得分:6)
您可以使用Array.indexOf
搜索值:
var includePokhara = ( tempArray.indexOf("Pokhara") >= 0 );
不幸的是,Array.indexOf
未在Internet Explorer中实现,但您可以查看StackOverflow how to add it back。
答案 1 :(得分:4)