Untitled

MULTIPLICATION TABLE
 avatar
unknown
plain_text
3 years ago
217 B
3
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...