私はTitaniumを使用していますが、私のコードは次のようになります。
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
。上記のコードを使用しても、存在しない要素をまだ検出できません。
&&
個々の条件の間に論理積()が必要です。