JavaScript Display Possibilities
- JavaScript can "display" data in different ways:
- Writing into an HTML element, using innerHTML.
- Writing into the HTML output using document.write().
- Writing into an alert box, using window.alert().
- Writing into the browser console, using console.log().
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <html>
<head>
<title>Display a table</title>
</head>
<body>
<script>
var i = 0;
var j = 0;
document.write("<table border='1'>");
document.write("<tr>");
document.write("<th> S.No </th>");
document.write("<th> Input </th>");
document.write("<th> Output </th>");
document.write("</tr>");
for(i=1;i<6;i++)
{
document.write("<tr>");
document.write("<td>" + i + "</td>");
document.write("<td>" + (i+4) + "</td>");
document.write("<td>" + (i+4)*(i+4) + "</td>");
document.write("</tr>");
}
document.write("</table>");
</script>
</body>
|
For Better Understanding of the loops for table in Java Script There is another Multiplication table below:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <html>
<head>
<title>Display a table</title>
</head>
<body>
<script>
var i = 0;
var j = 0;
document.write("<table border='1'>");
for(i=1;i<11;i++)
{
document.write("<tr>");
for(j=1;j<11;j++)
{
document.write("<td>"+j+"*"+i+"="+(j*i)+"</td>");
}
document.write("</tr>");
}
document.write("</table>");
</script>
</body>
|
As in the above loop we Use j*i Which makes the inner loop * outer loop as outer loop will changed as 10 inner loop so will display as 1*1=1 then in next row 2*1=2 ..... 10*1=10 Got it?
If something is wrong or Need more clarification Please contact me: info[at]devkotasagar.com.np.
Progressive jackpots often seize the eye of players, with Mega Moolah being a main example. With 1,000+ slots in complete, 1XBet Casino is a wonderful possibility on this space. Unfortunately, very few Korean on-line on line casino sites will allow you to guess within the native currency. Instead, they may only settle for worldwide currencies 카지노 (USD, EUR, etc.). According to the legislation, on-line playing in opposition to the law|is unlawful} in each North Korea and South Korea. The South Korean government often cracks down on on-line playing platforms concentrating on their residents.
ReplyDelete