Showing Posts From
Web
- Samuel Dang
- June 13, 2023
Javascript Series: Advanced Promises APIs
> Promises are a cornerstone of asynchronous programming in JavaScript, providing an elegant and st...
- Samuel Dang
- June 13, 2023
Javascript Series: Async/Await - Simplifying Asynchronous JavaScript
> Asynchronous programming is a fundamental aspect of JavaScript, allowing us to perform tasks with...
- Samuel Dang
- June 12, 2023
Javascript Series: What is a Callback?
> Callback is an important concept in JavaScript that allows us to work with asynchronous code and ...
- Samuel Dang
- June 12, 2023
Javascript Series: Exploring the Power of Closures
> Closures are an important concept in JavaScript but are often misunderstood. They are a powerful ...
- Samuel Dang
- June 12, 2023
Javascript Series: Debouncing - Optimizing User Interactions
> In web programming, we often encounter issues when handling user interactions such as rapid keyst...
- Samuel Dang
- June 14, 2023
Javascript Series: Introduction Decorators in JavaScript
> Decorators are a powerful concept in JavaScript that allows you to modify the behavior of functio...
- Samuel Dang
- June 14, 2023
Javascript Series: Exploring the Magic of Generator Functions in JavaScript
> Generator functions in JavaScript offer a unique approach to control flow and iteration, providin...
- Samuel Dang
- June 12, 2023
Javascript Series: Hoisting - Unlocking its Mysteries?
> When starting to learn JavaScript, you may come across a concept called "hoisting." This concept ...
- Samuel Dang
- June 13, 2023
Javascript Series: Javascript Polyfills - Closing the Browser Gap
> As web developers, we often encounter situations where we need to support older browsers that may ...
- Samuel Dang
- June 13, 2023
Javascript Series: Introduction to Promises
> Promises are a fundamental concept in modern JavaScript for managing asynchronous operations. The...
- Samuel Dang
- June 13, 2023
Javascript Series: Understanding Shallow and Deep Copy
> In JavaScript, when working with objects and arrays, it is important to understand the concepts o...
- Samuel Dang
- June 12, 2023
Javascript Series: What is 'THIS'?
> In the JavaScript programming language, the keyword "this" is an important concept but can be cha...
- Samuel Dang
- June 12, 2023
Javascript Series: Which one to choose: var, let, or const?
> In JavaScript, there are three keywords for variable declaration: var, let, and const. While they...
- Samuel Dang
- June 13, 2023
Javascript Series: Introduction to Web Workers
> Web Workers are a powerful feature in JavaScript that allow for concurrent execution of code in a ...