What is JavaScript and current version?
JavaScript (JS) is one of the most widely used programming languages in web development. It is used to create interactive and dynamic web pages.
Examples:
- Button click actions
- Form validation
- Animations
- Web applications
- Real-time updates
Today, JavaScript is used not only for websites but also for backend development and mobile applications.
JavaScript is a versatile, dynamically typed programming language that brings life to web pages by making them interactive. It is used for building interactive web applications and supports both client-side and server-side development.
- Interpreted language: Code is executed line by line.
- Dynamically typed: Variable types are determined at runtime.
JavaScript versions are called ECMAScript versions (ES1, ES5, ES6, ES2020, etc.)
HISTORY OF JAVASCRIPT
How JavaScript Started
In May 1995, JavaScript was created by Brendan Eich at Netscape.
Interesting fact: JavaScript was developed in just 10 days.
JavaScript went through multiple names:
Mocha
↓
LiveScript
↓
JavaScript
What makes JavaScript unique
JavaScript is a unique and essential programming language with several key features and capabilities that make it distinguished from the other languages. The following are the reasons why JavaScript is unique.
- Client-side dominance
- Full-stack development
- Asynchronous programming
- Event-driven programming
- Interpretation
- Just-in-time compilation
- Frameworks and Libraries
- Active Community
ADVANTAGES AND DISADVANTAGES OF JS
The advantages of using JavaScript on your website are that it:
- Works with all major browsers and devices
- Enables interactive features like menus, sliders, tabs, and forms
- Is versatile enough for everything from simple animations to fully dynamic experiences
- Easily connects with other marketing tools and platforms (like analytics, chat, or email widgets)
The downsides of using JavaScript on your website are that it:
- Can sometimes hide important content (like page titles, descriptions, or links) from search engines if those elements depend on JavaScript to load. This can hurt how your site shows up in search results.
- Slows down page speed, especially if scripts are large or poorly optimized
- May behave differently across some browsers, particularly older ones
- Can create security risks if you use untrusted scripts or plugins—JavaScript runs automatically in the browser
JavaScript Ecosystem
Many technologies are built using JavaScript.
Examples:
- React JS → Frontend UI library
- Angular → Frontend framework
- Node.js → Backend runtime environment
These technologies extend JavaScript for different application development purposes.
How Computers Understand Code
Computers understand only binary language:
0 and 1
Programming languages must be translated into machine language.
Two common translation approaches:
1. Interpreter
Converts code line by line.
Example:
JavaScript → Interpreter → Machine Language
Advantages:
- Easier debugging
- Executes immediately
2. Compiler
Converts the entire program at once.
Example:
Source Code → Compiler → Machine Code
Advantages:
- Faster execution after compilation
Note:
Modern JavaScript engines (like V8) use both interpretation and compilation internally for performance.
Why JS is an Interpreter Language?
JavaScript is primarily considered an interpreted language because it is sent to the browser as raw text and translated into machine code "line-by-line" at runtime, making it highly flexible. However, modern engines use a hybrid approach to improve performance.
What is Programming?
Programming means:
Giving instructions to a computer to perform specific tasks.
Example:
Open browser
Display website
Store user data
Calculate result
Applications help businesses manage and process huge amounts of data efficiently.
JavaScript Data Types
Data types define what type of value is stored.
1. Number
Stores normal numeric values.
Example:
let age = 25;
2. BigInt
Stores extremely large numbers.
Example:
let population = 12345678901234567890n;
Unlike Number, BigInt supports values larger than the safe integer range.
3. Boolean
Stores true or false.
Example:
let isLoggedIn = true;
4. String
Stores text values.
Example:
let name = "Annu";
Understanding Bytes and Bits
1 Byte = 8 Bits
Binary uses only:
0 and 1
Example:
2^8 = 256 possible combinations
Signed values can represent:
-128 to 127
JavaScript Number uses 64-bit floating point representation.
Types of Programming Languages
1. Statically Typed Language
Data type must be declared.
Example (Java):
int age = 10;
Rules:
- Data type mandatory
- Syntax strict
2. Dynamically Typed Language
Data type is automatically determined.
Example (JavaScript):
let age = 10;
JavaScript decides the type internally.
Variables in JavaScript
Variable:
A named storage location whose value may change.
Example:
let name = "Annu";
Structure:
Variable = Value
Example:
name = "Annu"
- name → Variable
- = → Assignment Operator
- "Annu" → Data
Semicolon (;) is optional in JavaScript but considered a good practice.
Ways to Declare Variables
1. Without Keyword (Not Recommended)
name = "Annu";
Problem:
- Can create accidental global variables.
2. Using var
var name = "Annu";
Problem:
var name = "Apple";
var name = "Orange";
Redeclaration is allowed.
Not preferred in modern JavaScript.
3. Using let (ES6)
let age = 16;
Features:
- Cannot redeclare in same scope
- Value can change
Example:
let age = 15;
age = 20;
Valid.
4. Using const
const price = 99;
Features:
- Cannot redeclare
- Cannot reassign
Example:
const price = 99;
JavaScript Versions
JavaScript evolves through ECMAScript versions.
Examples:
ES5
ES6
ES7
ES8
ES9
What is ECMA?
- ECMA stands for the European Computer Manufacturers Association.
- It was founded in 1961 as a non-profit industry association to develop standards for information technology, electronics, and programming languages.
- ECMA is now officially known as ECMA International to reflect its global reach.
- ECMAScript is the standard specification that defines how JavaScript should work.
ES means:
ECMAScript
It is the official standard specification for JavaScript.
Example:
ES6 (2015) introduced:
- let
- const
- Arrow functions
- Classes
- Modules
JavaScript follows ECMAScript standards.
References :
https://www.w3schools.com/whatis/whatis_js.asp
https://www.semrush.com/blog/javascript/
https://www.geeksforgeeks.org/javascript/introduction-to-javascript/
https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting/What_is_JavaScript
https://mvjce.edu.in/blog/evolution-of-javascript/



Top comments (0)