Untitled
MULTIPLICATION TABLEunknown
plain_text
4 years ago
217 B
7
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...