This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by soullessapple
about 12 years

3.5 really confusing help

i can get it to come up and say true but otherwise it doesn’t do what its supposed to. this is my code any help would be appreciated. :)

var lost = [4, 8, 15, 16, 23, 42]; var count = lost.length;

var isLost = function (n) { for ( i=0; i<6; i++) { if ( n === lost[i]) { return false; }else{ return true;0 } return ; };

if ( isLost(12) ) { console.log(‘12 is a lost number’); } if ( isLost(16) ) { console.log(‘16 is a lost number’); } } isLost();