Skip to content

Instantly share code, notes, and snippets.

@FranciscoImanolSuarez
Created April 21, 2022 19:02
Show Gist options
  • Select an option

  • Save FranciscoImanolSuarez/dbb53ae6cd7feceec4533e0648d7649a to your computer and use it in GitHub Desktop.

Select an option

Save FranciscoImanolSuarez/dbb53ae6cd7feceec4533e0648d7649a to your computer and use it in GitHub Desktop.
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