Я працюю з 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
. Я все ще не в змозі виявити неіснуючий елемент за допомогою наведеного вище коду.
&&
) між окремими умовами.