-1
I want to ask several names typed via prompt, and have some stop condition, I thought this condition being a number, but I did not succeed.
let nomes = []
let dado = ""
console.log(typeof(dado))
while(dado == String){
dado = prompt("Digite um nome para continuar o programa, ou digite o número 0 para encerra-lo.")
if(typeof(dado) == String) nomes.push(dado)
if(dado == 0) parseInt(dado)
}
for(i = nomes.length; i == 0; i--){
console.log(nomes[i])
}
if(dado == 0) break
– Augusto Vasques
But why would I need standstill condition if the very
prompt
has the functioncancelar
? It would not be better to change the text?Digite um nome para continuar o programa, ou clique em cancelar para encerra-lo
.– Matheus Franco