What is JavaScript ?
History of javascript creation :
Javascript was created in 1995 by Netscape Communications Corporation, a company that developed web browsers and other internet-related software. The language was initially developed to enhance the functionality of web pages and make them more interactive.
The idea for Javascript came from Netscape's co-founder, Marc Andreessen, who wanted a way to make web pages more interactive and dynamic. Andreessen recruited a young programmer named Brendan Eich to lead the development of the language.
Eich and a small team at Netscape worked on creating Javascript, drawing inspiration from other programming languages such as C and Java. They initially called the language "Mocha," but later changed it to "Javascript" to capitalize on the popularity of Java.
Javascript was released to the public in 1996 and quickly gained widespread adoption as a standard for web development. In 1997, Netscape submitted Javascript to the European Computer Manufacturers Association (ECMA) for standardization, and it was officially standardized as ECMAScript.
Today, Javascript is used on nearly every website and is a key component of many modern web applications. It has also inspired the development of other programming languages, such as TypeScript and CoffeeScript.
How Javascript work ?
Javascript is a programming language that runs in the browser, which means that it is executed by the web browser on the client side (the user's computer) rather than on the server side (a remote server).
When a user accesses a webpage that contains Javascript, the browser will read the HTML and CSS of the page to determine how the page should look and function. It will then execute any Javascript code that is included in the page.
Javascript code is usually written in small blocks, called functions, which can be called by other parts of the code or by user interactions (such as clicking a button). These functions can perform a variety of tasks, such as manipulating the HTML or CSS of the page, making requests to the server for additional data, or interacting with the user through prompts and alerts.
Once the Javascript code has been executed, the browser will update the page accordingly and the user will be able to interact with the page in the way that the code has specified.
What is a modern Javascript ?
Overall, modern JavaScript is a constantly evolving field that incorporates the latest advancements in the language and tools for web development. It aims to make it easier and more efficient for developers to create rich, interactive web applications that provide a seamless user experience.
0 Comments