Times Table : Time « Development « JavaScript DHTML






Times Table

<html>
<head>
<script language="JavaScript">
<!--
function TimesTable(number) {
  var thisLoop = 1;
  document.writeln("Times Table for: <b>" + number + "</b><hr><pre>");
  while (thisLoop <= 12) {
        document.writeln(thisLoop + " x " + number + " = " + (thisLoop * number));
        thisLoop++;
  }
  document.writeln("</pre>");
}
TimesTable(prompt("Enter a number",10));
//-->
</script>
</head>
</html>

           
       








Related examples in the same category

1.Formats the current hour and displays it in a static or dynamic way
2.A Clock Script
3.Update Time per second
4.Time: hour, minutes, and seconds.
5.Display the Current Time in status bar
6.Creating a Clock Object and Displaying the Results on the Page
7.Morning or Evening
8.Time value
9.Get the current time and then extract the hours, minutes and seconds