Introduction
Here we'll see what is JavaScript, the use of JavaScript in software development, the history and evolution of JavaScript, and at the end, we'll see the different JavaScript engines.
Setting up development environment
There are many ways to run JavaScript locally. In this article, we will learn how to run JavaScript locally using Node.js and the browser.
Overview
Here we will learn the basic rules and overview of concepts like variables, data types, operators, loops, functions, etc.
Variables
Variables are containers for storing data values. In this article, we will learn about the different types of variables in JavaScript.
Data Types
Data types are the types of values that can be stored in variables. JavaScript has 7 different data types number, string, boolean, null, undefined, object, and symbol. Here we will learn about them.
Operators
Operators are used to perform operations on variables and values. In this article, we will learn about different types of operators in JavaScript.
Conditional Statement
Conditional statements allow you to execute different code blocks based on whether a condition is true or false. The most basic conditional statement is the if statement. In this article, we will learn about different types of conditional statements in JavaScript.
Loops
Loops are used to execute a block of code multiple times. In this article, we will learn about different types of loops in JavaScript.
Functions
A function is a block of code that performs a specific task. In this article, we will learn about different types of functions in JavaScript.