What is the difference between var, let and const with Example (Javascript)
What are variables?
Variables are named values and can store any type of value.
Here is how you can declare a variable in javascript.
var x = 100;
How to declare variables in javascript?
In javascript declare variables with var, let, and const.
//wit...
blog.yashprajapati.com5 min read
Piyush Darji
What a wonderful article by yash prajapati !!!