write a JavaScript program to demonstrate multiplication table.
Answers
Answered by
2
var a = 10;
var b;
for (var i = 1; i <= 10 ; i++) {
b = a * i;
ducument.write(" " +a+ "*" +i+ "-", +"<br>");
}
if you will add to brain list I will give you program of all numbers you just write number of times table and it's shows you from 1 to 10 it's html with js (javascript)
Similar questions