📄️ Variables
Variables are like a container that store data values.
📄️ Data Types
In JavaScript, data types serve as the building blocks for variable assignments and manipulations within a program.
📄️ Operators
Operators in JavaScript are symbols that allow us to perform operations on values.
📄️ Const
const keyword in JavaScript allows us to assign a constant value, we cannot change its value ones assigned.
📄️ Let
Let is a new keyword in JavaScript ES6 that allows you to declare variables that are limited to the scope of a function.