var, let and const in Java Script
This concept is very important to understand as a beginner. It makes the scope concept very clear. There are three ways by which variables are declared in JavaScript.
var name = "John";
let name = "John";
const name = "John";
var
var is the oldes...
omangmorekar.hashnode.dev3 min read