我希望能够看到" megan"是阵列人的一部分。虽然,我只能通过使用人[2]来做到这一点。
Here is my code:
var people = new Array("jack","ian");
document.write(people[0]);
people.push("megan");
document.write("<br />");
答案 0 :(得分:1)
使用数组的indexOf
方法:
if(people.indexOf("megan") > -1) {
//do stuff
} else {
//not in array
}
如果字符串在数组中,则返回0
。如果没有,则返回-1
。