Create a table with 3 columns in the first column create a 15 times table from 1 to 100.In the second column create a 25 times table from 1 to 250 and
var number=35;
var count=0;
var result=0;
while(count<30){
count=count+1;
result=number*count;
document.write(number+"*"+count+"="+result+" "); } |