Advertisement
Spocoman

02. Multiplication Table

Dec 30th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function multiplicationTable() {
  2.     for (let i = 1; i <= 10; i++){
  3.         for (let j = 1; j <= 10; j++){
  4.             console.log(`${i} * ${j} = ${i * j}`);
  5.         }
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement