JavaScript:
- JavaScript is a lightweight, interpreted programming language.
- It is designed for creating network-centric applications.
- It is complimentary to and integrated with Java.
- JavaScript is very easy to implement because it is integrated with HTML.
- It is open and cross-platform.
Program to display hello world!
Source code:
<html> <body> <script language="javascript" type="text/javascript"> document.write("Hello World!") </script> </body> </html>Output:
Hello world!
Thanks and Regards,
Tech Bird
Comments