5th March, 2023
JS Scope,JS Variables
var has function-level scope and can be reassigned. let and const have block-level scope, with let being able to be reassigned and const being a constant variable that cannot be reassigned.
1th May, 2023
JS Scope,JS Variables,JS Closures
Understanding JavaScript closures: Examples with Different Variables and Scopes Explained in Detail
9th May, 2023
Explore real-world examples of hoisting in action and common mistakes to avoid.