0
how to make a while cycle come to an end when the correct number is put. Code explain please :c
This is wrong. var resultado; while( resultado !== 20 ){ resultado = prompt(" 18 + 2 = ? " ) }
1 ответ
0
var resultado;
while( resultado !== "20" ){
resultado = prompt(" 18 + 2 = ? " )
}