Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/04/2010, 21:29
web_master7
(Desactivado)
 
Fecha de Ingreso: octubre-2009
Mensajes: 109
Antigüedad: 15 años, 3 meses
Puntos: 1
Respuesta: Problema con while

Código:
<script type="text/javascript">
<!--
var myCounter = 0;
var linea = "<br />";
alert("While esta empezando");
document.write(linea);
while(myCounter < 10){
document.write("hola = " + myCounter);
document.write(linea);
myCounter++;
}
alert("While se termina!");
//-->;

</script>