📄️ Closures
Closures are one of the key concepts in JavaScript that every developer should understand. A closure is simply a function bundled together (enclosed) with references to its surrounding state (lexical environment). In other words, a closure gives you access to an outer function’s scope from an inner function.
📄️ ES6 Features
ECMAScript 6 (ES6), also known as ECMAScript 2015, brought a wave of new features to JavaScript. These features are designed to make your code more modern, readable, and flexible. Let's dive into the most significant ES6 features to help you write better JavaScript code.
🗃️ Promises and Async
1 items