JavaScript for Beginners: Understanding the Basics
Let’s first describe about the data types in JavaScript there are 3 types of datatypes
they are
var, let const
var can be redeclared and reassigned
var x=10
var x=23
console.log(x) //23
these is allowed in var
Let can be re assigned but not re-declar...
vaishnavidevdiary.hashnode.dev2 min read