<!DOCTYPE html>
<html>
<head>
<title>Unit 2 - Q8</title>
<script type="text/javascript">
var no=5,i;
document.write("Table of " + no + " :<br>");
for(i=1;i<11;i++)
{
document.write("<br>" + no + " x " + i + " = " + no*i);
}
</script>
</head>
</html>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.