Previous Next

JavaScript Introduction

What is JavaScript?

JavaScript is a widely used coding language to create interactive and dynamic websites. JavaScript is an adaptable code language that can be employed both on the client and server sides. From simple form validation to complex web-based games, JavaScript is an essential element when creating interactive web applications.

History of JavaScript

Brendan Eich, a developer at Netscape Communications Corporation, created JavaScript within ten days in May 1995. JavaScript had many different names initially, such as "Mocha" and "LiveScript," before Netscape finally settled on the name "JavaScript." JavaScript appeared for the first time in Netscape Navigator 2.0, which was the most used browser at that time. Netscape submitted JavaScript for standardization to the European Computer Manufacturers Association (ECMA) in 1996. The standardized language was called ECMAScript.

Features of JavaScript

How to add JavaScript in html document ?

The <script> tag is utilized to incorporate JavaScript code within an HTML document.
Example:

Previous Next