#100daysofcode
Read more stories on Hashnode
Articles with this tag
Scope Every variable in JavaScript has a scope, scope is basically where the variable can be accessed in the code. let and const variables are...
When a code block is executed in JavaScript, JavaScript scan all the variables inside the current scope and moves it to the top of the scope. This is...