Table of 2 in javascript using for loop

Example 1: Multiplication Table Up to 10

// program to generate a multiplication table

// take input from the user
const number = parseInt[prompt['Enter an integer: ']];

//creating a multiplication table
for[let i = 1; i 

Chủ Đề