Skip to content

Latest commit

 

History

History
executable file
·
15 lines (10 loc) · 168 Bytes

File metadata and controls

executable file
·
15 lines (10 loc) · 168 Bytes

importance: 3


Último valor do loop

Qual é o último valor exibido no alerta por este código? Por quê?

let i = 3;

while (i) {
  alert( i-- );
}