JavaScript Basics
JavaScript is a high-level, interpreted programming language that powers dynamic behavior on the web. It’s an essential skill for frontend development.
Introduction to JavaScript
JavaScript (JS) enables interactive web pages and is an essential part of web applications. It was created in 1995 by Brendan Eich and has since become one of the world’s most popular programming languages.
Where JavaScript Runs
- Browser: Client-side JS runs in the user’s browser
- Server: Node.js allows JS to run on servers
- Mobile Apps: Frameworks like React Native use JS for mobile development
- Desktop Apps: Electron enables JS-powered desktop applications
Setting Up JavaScript
In HTML
1 | <!-- Internal JavaScript --> |
Console
You can also run JavaScript in the browser’s developer console (F12 or Right-click > Inspect > Console).
Variables and Data Types
Variable Declaration
There are three ways to declare variables:
1 | // var - function-scoped (older way) |
Primitive Data Types
1 | // String - text |
Checking Types
1 | typeof "Hello"; // "string" |
Complex Data Types
1 | // Object - collection of key-value pairs |
Operators
Arithmetic Operators
1 | let a = 10; |
Assignment Operators
1 | let x = 10; // Basic assignment |
Comparison Operators
1 | let a = 5; |
Logical Operators
1 | let isAdult = true; |
Control Flow
Conditional Statements
1 | // if statement |
Loops
1 | // for loop |
Functions
Function Declaration
1 | // Basic function declaration |
Function Expressions
1 | // Function expression (anonymous) |
Function Scope
1 | // Global scope |
Higher-Order Functions
Functions that take other functions as arguments or return them:
1 | // Function as an argument |
Working with Arrays
Array Methods
1 | let fruits = ["apple", "banana", "cherry"]; |
Working with Objects
Object Methods
1 | let person = { |
Object Destructuring
1 | const user = { |
Error Handling
1 | // try...catch |
JavaScript Best Practices
Use strict mode to catch common coding errors:
1
2;
// Your code herePrefer const/let over var for more predictable scoping
Use meaningful variable and function names for better readability
Add comments for complex logic, but make code self-documenting when possible
Handle errors appropriately using try/catch
Avoid global variables to prevent namespace pollution
Use === and !== instead of == and != to avoid unexpected type coercion
Use default parameters instead of checking for undefined
Use template literals for string concatenation
Use array and object destructuring for cleaner code