JavaScript program for table on July 04, 2021 Get link Facebook X Pinterest Email Other Apps document.write("<table border='1'>"); for(var a=1;a<=100;a=a+10) { document.write("<tr>"); for(var b=a;b<a+10;b++) { document.write("<td>"+b+"</td>"); } document.write("</tr>"); } document.write("</table>");Output Comments
Comments
Post a Comment