Advertisement
Liliana797979

viarno reshenie multitable

Feb 13th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function multiTable() {
  2.     for (let x = 1; x <= 10; x++) {
  3.         for (let y = 1; y <= 10; y++) {
  4.             let result = x * y;
  5.             console.log(`${x} * ${y} = ${result}`);
  6.         }
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement