I'm trying to do a lookup until i found an especific value; currently using if statements like this but right now its only two levels and i dont need how many if statements will be needed until the conditions meets.
if (newObject.parent.toString() != 1) {
alert(newObject.shareholder + ' no es 1 Buscaremos sus padres');
var newObject = parentSearch.search(newObject.parent.toString())[0].item;
if (newObject.parent.toString() != 1) {
var newObject = parentSearch.search(newObject.parent.toString())[0].item;
} else {
alert(newObject.shareholder + ' Found');
}
} else {
alert(newObject.shareholder + ' Found');
}
Is there a way to avoid using infinite IF statements ?
newObject.parent.toString() != 1doing?toString()returns a string, why are you comparing it with a number?