Last active
November 22, 2018 02:30
-
-
Save littletsu/9db60b2b3c242c49687d4376a1446dc0 to your computer and use it in GitHub Desktop.
Tablas de Multiplicar en JavaScript (Funciona en Node.js y Navegador)
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
// Variables | |
let tabla = 2 | |
let longitud = 10 | |
// Codigo | |
for (i = 1; i < longitud + 1; i++) { | |
console.log(`${tabla}x${i} = ${tabla*i}`) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment