Dec 30, 2025 · 3 min read · Variables, Data Types & Control Flow (Beginner Friendly) JavaScript is the brain of the web.It makes websites interactive, dynamic, and smart. In this blog, you’ll learn: What variables are and how to use them Data types explained with real-world e...
Join discussion
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 discussionMar 25, 2025 · 1 min read · Hello-world code 🤌 : console.log("Hello World) ; // console.log() prints the message to the console. Variables in JS 📦 : Variables store data values and can be declared using var, let, or const. var name = "HITESH"; let age = 25; // allows rea...
Join discussion