Created
April 21, 2022 19:02
-
-
Save FranciscoImanolSuarez/dbb53ae6cd7feceec4533e0648d7649a to your computer and use it in GitHub Desktop.
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
| let numeroUno = 0; | |
| let numeroDos = 0; | |
| //numeroUno = parseInt(prompt("Ingrese numero uno")) | |
| //numeroDos = parseInt(prompt("Ingrese numero dos")) | |
| //numeroUno = 2; | |
| //numeroDos = 10; | |
| for(let i = numeroUno + 1; i < numeroDos; i++ ){ | |
| console.log('El numero es ' + ' ' + i) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment