JavaScript Closures and their practical uses
What the heck are closures anyways?
According to the official Mozilla website closure is:
The combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a closure gives y...
blog.sekab.dev4 min read
Nic
This week I learnt...
Now I get it. I've seen the concept before, but couldn't see a use for it. Now I see why you'd use it.