Good Night! In my practical experiences in JavaScript, I tried to create a condition to alert the user to a variable that he left unnoticed by pressing the enter key twice. However, trying to solve this problem, I made two attempts:
/*Tentativa 1:*/
var linha = Array(3,3);
var x, y;
for (x = 0; x < 3; x++) {
for (y = 0; y < 3; y++) {
linha[x,y] = parseInt(prompt("Digite o "+[y+1]+"º número da "+[x+1]+"º coluna"));
if (linha[x,y] == null) {
alert("Digite alguma coisa");
while (linha[x,y] == null){
linha[x,y] = parseInt(prompt("Digite o "+[y+1]+"º número da "+[x+1]+"º coluna"));
if (linha[x,y] == null) {
alert("Digite alguma coisa");
}
}
}
}
}
/*Tentativa 2:*/
var linha = Array(3,3);
var x, y;
for (x = 0; x < 3; x++) {
for (y = 0; y < 3; y++) {
linha[x,y] = parseInt(prompt("Digite o "+[y+1]+"º número da "+[x+1]+"º coluna"));
if (linha[x,y] == " ") {
alert("Digite alguma coisa");
while (linha[x,y] == " "){
linha[x,y] = parseInt(prompt("Digite o "+[y+1]+"º número da "+[x+1]+"º coluna"));
if (linha[x,y] == " ") {
alert("Digite alguma coisa");
}
}
}
}
}