Java scripting abbreviated as JS, is a programming language which is one of the core technologies, of WWW(World Wide Web).
Why Java script is used?
Java Script is used to create web applications and web pages..
It is also easy to learn and code also..
Features of javascript:
Generates the HTML content.
Handles Date and Time settings.
Platform independent.
Now let us see the basic code to print hello world..
<!Doctype Html>
<html>
<body>
<h2> Hello World </h2>
</body>
</html>
now let us discuss the terms which we have used above.
doctype: it shows us the version of the html document.
html: structures the web page.
body: stores the content written in the container..
</body>: closing tag for <body>
</html>: closing tag for <html>