17/04/2010, 21:29
|
(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>
|