Var Let and Const With Code Snippets
Javascript allows us to declare variables in 3 different ways
var
let
const
Var:
we can declare variables with the help of var.
var is a functional scope or global scope.
it can be updated and redeclared.
it can be declared without initializ...
deepaknayak.hashnode.dev5 min read