I i am new for .net any one can help me creating tables 1 to 100 using javascript
srinukatkam 0 Newbie Poster
Recommended Answers
Jump to PostHi there,
well you may uses this script to create the tables of 1 to 100,
<html> <head> <title>Tables 1 To 100 </title> <script language="javascript" type="text/javascript"> for (i=1;i<=100; i++) { document.write("Table of: "+ i+"<br />"); for(j=1; j<=10; j++) { document.write(i + "X" + j +" = …
All 2 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.