如何在javascript中检查数组索引是否存在?
我使用的是Ti,我的代码如下所示:
var currentData = new Array();
if(currentData[index]!==""||currentData[index]!==null||currentData[index]!=='null')
{
Ti.API.info("is exists " + currentData[index]);
return true;
}
else
{
return false;
}
我正在向currentData
数组传递索引。我仍然无法使用上面的代码检测到不存在的索引。
解决方案
使用typeof arrayName[index] === 'undefined'
即
if(typeof arrayName[index] === 'undefined') {
// does not exist
}
else {
// does exist
}
相关文章