JavaScript closure related important URLs

I was researching about JavaScript closure and found really good articles about it. JavaSript closure is really cool concept and really handy for functional JavaScript and module design pattern.

I would recommend you to ready all the following articles if you want to get the core of JavaScript closure.

https://stackoverflow.com/questions/111102/how-do-javascript-closures-work
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures
https://medium.com/dailyjs/i-never-understood-javascript-closures-9663703368e8
https://stackoverflow.com/questions/12930272/javascript-closures-vs-anonymous-functions/12930799
https://javascriptweblog.wordpress.com/2010/10/25/understanding-javascript-closures/
http://dmitrysoshnikov.com/ecmascript/chapter-4-scope-chain/
http://dmitrysoshnikov.com/ecmascript/chapter-2-variable-object/
http://dmitrysoshnikov.com/ecmascript/javascript-the-core
https://upokary.com/what-is-javascript-closure-and-how-it-works/

Comments