Advertisement
Didart

Multiplication Table

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