Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 11, 2019 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/a9f377b4c5c37ba28c62bec5514eb9eb to your computer and use it in GitHub Desktop.
Save parzibyte/a9f377b4c5c37ba28c62bec5514eb9eb to your computer and use it in GitHub Desktop.
const TABLA = 5;
let i = 1;
while (i <= 10) {
console.log(`${i} x ${TABLA} = ${i * TABLA}`);
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment