js 判断数组中是否有某值

2024年11月15日 19:51
有1个网友回答
网友(1):

var sss = 'hello';
if(sss.indexOf('h')>-1){
alert('contain h in sss!!!');
}