Tiny Frontend Logo
Posts 0107

On This Page

Promises for Asynchronous JavaScript

Promises are a fundamental part of asynchronous programming, providing a convient way to manage asynchronous operations.

In this guide, we'll delve into the ins and outs of promises, covering their syntax, usage, common patterns, and best practices.

1 Minute Video

Why Do We Need Promises?

Before the introduction of promises, handling asynchronous operations in JavaScript relied heavily on callback functions.

While callbacks are functional, they often lead to a phenomenon known as callback hell, where nested callbacks become difficult to manage and understand.

Callback Demo

In this example, each callback function is nested inside the previous one, leading to a deeply nested and hard-to-read structure.

function getUserInfo (callback) {
    // callback 1: get user name
    getUserName(userId, (name) => {
        // callback 2: get user email
        getUserEmail(userId, (email) => {
            // callback 3: get user address
            getUserAddress(userId, (address) => {
                // callback 4: return user info
                callback({
                    name,
                    email,
                    address
                });
            });
        });
    });
}
Subscribe to read the full content

* Free subscribe to enjoy full content access.
* You can cancel anytime with 1-click.

Read Next

0106

Styling the First Letter

The ::first-letter pseudo-element applies styles to the first letter of a block container.

Styling the First Letter
0105

The Deprecation of Third-Party Cookies

Google has announced its plan to disable third-party cookies by default in Chrome, a step that will reshape the landscape of online tracking and user privacy. This change is part of a broader effort to enhance user privacy and security on the web.

The Deprecation of Third-Party Cookies
0104

Implementing Your Own debounce()

Debounce is a common technique used in web development to improve performance by controlling the rate at which a particular function is invoked.

Implementing Your Own debounce()
0103

Design Pattern: Singleton

Ever wondered how the Singleton Design Pattern is used in frontend development?

Design Pattern: Singleton
0102

The Strict Mode in JavaScript

Ever wondered why some JavaScript functions start with 'use strict' at the beginning?

The Strict Mode in JavaScript
0101

Adapting Your Website to Language Changes

The ability to seamlessly switch between languages enhances user experience and makes your website more accessible to a diverse audience. Let's explore the steps involved in achieving this functionality.

Adapting Your Website to Language Changes