TZinovieva

Multiplication Table

Oct 1st, 2022
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function multiplicationTable(input){
  2.     let n = Number(input[0]);
  3.  
  4.     for (let i = 1; i <= 10; i++){
  5.         let result = n * i;
  6.         console.log(`${i} * ${n} = ${result}`);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment