1
resposta

Do for para o while

var i = 0;

while(i < 10)

{
    alert( "O resultado é " + (2 * i) );
    i++;
}
1 resposta

Muito bom Rafaela.