LPMJ Example 15-19 (Click on the icon to view the source for copy and pasting)
<script>
for (count = 1 ; count <= 12 ; ++count)
{
	document.write(count + " times 12 is " + count * 12 + "<br />");
}
</script>