0
My code is not working (help)
var yourName = prompt("your name please"); var namesList = ["john", "bob", "lux"]; for ( i = 0; i < 3; i++){ if ( yourName === namesList[i] ){ document.write("your name on list") ; break; } else { document.write("not on list") ; break; } } when i enter john its true but bob and lux is false whats wrong ?
6 ответов
+ 5
you have placed a 'break' command inside the 'else' condition.
since 'else' is always entered if the 'if' does not enters, you simply break the loop and end the program before even examining the rest of the array.
you only checked at the first index of the array and then broke the loop
+ 5
there you go
var yourName = prompt("your name please");
var namesList = ["john", "bob", "lux"];
var found = false;
for ( i = 0; i < 3; i++){
if ( yourName === namesList[i] ){
document.write("your name on list") ;
found = true;
break;
}
}
if(!found)
document.write("not on list") ;
+ 1
Break will always stop a function the moment it is encountered, preventing the remaining loops from completing.
0
still not working
0
I guess just use == instead of ===
0
Object types are not equal