Javascript program for Multiplication of tables from 1-10
<html>
<head>
<title>Time Table</title>
</head>
<body>
<table border="1">
<script type="text/javascript">
for(i=1; i<=10; i++)
{
document.write("<tr>       ");
for(o=1; o<=10; o++)
{
document.write("<td>      ",+o, "*" , +i , "=" ,i*o, '</td>');
}
document.write("</tr>\n");
}
</script>
</body>
</html>