Here\'s the code i\'ve written, which is included in a HTML document:
Change it to this:
js
var cipars = 10;
var i =0;
document.write('<table border="1" cellspacing="0" id="Tabula">');
for (i=1; i<10; i++) {
document.write("<tr>");
for (j=1; j<10; j++) {
document.write("<td>" + i + " x " + j + " = " + j*i + "</td>");
}
document.write("</tr>");
}
document.write("</table>");