Untitled
MULTIPLICATION TABLEAnonymous
plain_text
12/06/2021 6:48 AM
292 B
17
Indexable
var number = 1
//creating a multiplication table
for(let i = 1; i <= 10; i++) {
// multiply i with number
const result = i * number;
// display the result
console.log(`${number} * ${i} = ${result}`);
}Editor is loading...