JavaScript for Beginners: Understanding the Basics
Apr 3, 2025 · 2 min read · 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...
Join discussion

