Skip to content

Instantly share code, notes, and snippets.

@Ifmr24
Created September 18, 2018 00:34
Show Gist options
  • Select an option

  • Save Ifmr24/ddd5ad6f961521d0c092b04e684b1782 to your computer and use it in GitHub Desktop.

Select an option

Save Ifmr24/ddd5ad6f961521d0c092b04e684b1782 to your computer and use it in GitHub Desktop.
JS Do While
// BUCLE DO WHILE
var years = 15;
do{
document.write("Se Ejecutara hasta que years sea 25, year es: "+years+"<br>");
years++;
// Mientras que years sea menor o igual a 25 se ejecutara
}while(years <= 25);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment