Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 11, 2019 17:52
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/c9dcfd4441731ca2873b7c7bd19ea7bb to your computer and use it in GitHub Desktop.
Save parzibyte/c9dcfd4441731ca2873b7c7bd19ea7bb to your computer and use it in GitHub Desktop.
const TABLA = 5;
for(let i = 1; i <= 10; i++){
console.log(`${i} x ${TABLA} = ${i * TABLA}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment