What is JavaScript?
Discover why JavaScript was created and what role it plays on every web page you visit.
The web was frozen in place
In the early 1990s, web pages could only display text and images. Clicking a button required a full page reload from the server. There was no way to react instantly to what the user did — no dropdown menus, no form checking, no animations. Brendan Eich created JavaScript in 1995 at Netscape to solve this exact problem: give web pages the ability to respond to user actions right inside the browser, without waiting for the server.
JavaScript follows a standard called ECMAScript, maintained by an international committee (TC39). When you hear 'ES6' or 'ES2015,' that refers to the 6th edition of this standard — a major update that added features like `let`, `const`, arrow functions, and more. Every browser maker implements the same standard so your code works everywhere.