Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.7 KB

closures.md

File metadata and controls

23 lines (19 loc) · 1.7 KB

Bookmarks tagged [closures]

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures

A 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 you access to an oute...


http://krasimirtsonev.com/blog/article/JavaScript-bind-function-setting-a-scope

The this keyword is always important in JavaScript. I'll admit that it took me some time to actually understand how it works. You know, sometimes JavaScript is all about the scope. Where you are and...


https://auth0.com/blog/glossary-of-modern-javascript-concepts-part-2/

In the first part of the Glossary of Modern JS Concepts series, we learned about functional, reactive, and functional reactive ...