#es6
Read more stories on Hashnode
Articles with this tag
Accidental Global Variables Variables declared without any keyword (e.g. var, let, const ) are called Accidental global variables. function fun(){ ...
Before understanding closure, we have to understand one thing first, The closure is not something we can create, it's just a JavaScript feature that...