What is JavaScript?
Advantages of Using JavaScript (Client-Side)
Advantages of Using JavaScript (Server-Side)
JavaScript on Web Browser<html> <head><title>JavaScript in Browser</title></head> <body> <script language="JavaScript"> var titleNo=2; document.write("<h1>Document No"+titleNo+" </h1>\n"); </script> </body> </html> JavaScript on Web Server
|