Created
          February 4, 2017 21:34 
        
      - 
      
 - 
        
Save anonymous/37d654832f9e46900f6555982239f90f to your computer and use it in GitHub Desktop.  
    JS Bin // source http://jsbin.com/hutobem
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| function raiz (number){ | |
| while (number <= 12){ | |
| console.log(number); | |
| number = number+2; | |
| } | |
| } | |
| raiz(3); | |
| </script> | |
| <script id="jsbin-source-javascript" type="text/javascript">function raiz (number){ | |
| while (number <= 12){ | |
| console.log(number); | |
| number = number+2; | |
| } | |
| } | |
| raiz(3); | |
| </script></body> | |
| </html> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function raiz (number){ | |
| while (number <= 12){ | |
| console.log(number); | |
| number = number+2; | |
| } | |
| } | |
| raiz(3); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment