Open In App

JavaScript Course What is JavaScript ?

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

JavaScript is a very famous programming language that was originally started in the year of 1995 with the motive of making web pages alive. It is also an essential part of the web developer skillset. In simple terms, if you want to learn web development then learn HTML & CSS before starting JavaScript.

  • HTML: HTML is used to create the structure of web pages that are displayed on the World Wide Web (www). It contains Tags and Attributes that are used to design the web pages. Also, we can link multiple pages using Hyperlinks.
  • CSS: Styling is an essential property for any website. It increases the standards and overall look of the website that makes it easier for the user to interact with it.

JavaScript is easy to learn but hard to master and is used for a wide variety of purposes, from simply enhancing the functionality of a website to running cool games and web-based software.

History: JavaScript was created over a period of several days by Brandan Eich, a Netscape employee, back in September 1995. Initially called ‘Mocha’, the language’s name was changed to ‘Mona’ and then ‘LiveScript’ before eventually becoming known as ‘JavaScript’. In 1996, JavaScript was officially given the name of ECMAScript, with ECMAScript 2 coming out in 1998 and ECMAScript 3 following up in 1999. Today we have ECMAScript 2018. This evolved into today’s JavaScript, which now works not only across different browsers but also on different devices including desktops and mobile devices. In just twenty years or so it’s gone from a primitive programming language to one of the most important tools in a web developer skill set. It’s hard to miss JavaScript if you have worked on the Internet.

Working: Inside a normal Web page, which contains some HTML and CSS, you place some JavaScript code. When the browser loads the page, the browser has a built-in interpreter that reads the JavaScript code it finds in the page and runs it. The built-in browser interpreter is basically the ‘JavaScript virtual machine’. Different engines have different codenames, different for different browsers, but they do the same thing more or less. These are:

  • V8: In Chrome and Opera
  • Chakra: In Microsoft Edge
  • SpiderMonkey: In Firefox

What Javascript(in-browser) can do?

Modern JavaScript is very powerful as when compared to the versions launched 10 years ago. I can be termed as a ‘Safe’ Programming language as it was initially created for browsers which do not require it. In browser, JavaScript can do many things like interaction with the user, webpage manipulation and the web server. Some of these are:

  • Add new HTML content to the page
  • Change Existing HTML content and styles
  • React to user actions like mouse clicks, pointer movements etc.
  • Can get and set cookies
  • Remember the data on the client side.

What Javascript(in-browser) can’t do?

There are several things that the javascript can’t do and some of these can mainly be related to principle of ‘user’ safety.

  • In-browser JavaScript may not read/write arbitrary files on the hard disk, copy them or execute programs. Basically it doesn’t have a direct access to OS system functions.
  • It cannot protect your page source or images.
  • It cannot access web pages that are hosted on another domain.

Last Updated : 02 Mar, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads