js判断一个值是否在一个数组中

function  in_array(needle, haystack) {

type 
=   typeof  needle
 
if (type  ==   ' string '   ||  type  == ' number ' ) {
  
for ( var  i  in  haystack) {
   
if (haystack[i]  ==  needle) {
     
return   true ;
   }
  }
 }
 
return   false ;
}
 

你可能感兴趣的:(function,String)