1
resposta

Do for para o while! - solução maluca

<meta charset="UTF-8">
<script>

    var i = 0;

while (i<10)
{

   document.write("----------- i =  "+i+"  ---->   ");
   alert( "O resultado é " + (2 * i) );
   document.write("Para i ="+i+" , o resultado é " + (2 * i)+"<br>");
    i++ 

}



document.write("FIM");


</script>
1 resposta

Funciona :)

var i = 0;
while( i < 10) {
    alert( "O resultado é " + (2 * i) );
    i++;    
}