Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var bucle = function(){
  2.     contador = 0; //al ser la condición (contador < 4) nos aseguramos que la condicion sea verdadera al ingresar al while()
  3.     while(contador < 3)
  4.     {
  5.         console.log("Estoy en un bucle!");
  6.         bucle++;
  7.     }
  8. }
  9.  
  10. bucle(); //llamada a la funcion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement