Understanding Variables and Data Types in JavaScript
What variables are and why they are needed?
Variables
Variables are named containers used to store a data in memory(ram).
Example -
let username = "Krish"
Here, inside memory at some location (0x001)
skullcoder.hashnode.dev6 min read