Estoy trabajando con Titanium, mi código se ve así:
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;
}
Estoy pasando un índice a la matriz currentData
. Todavía no puedo detectar un elemento no existente usando el código anterior.
&&
) entre las condiciones individuales.