Best of DOMNovember 2022

  1. 1
    Article
    Avatar of tuts_plusTuts+·4y

    Learn Modern JavaScript Fundamentals in 7 Hours—Free Course

    Learn Modern JavaScript Fundamentals in 7 hours 30 minutes long, and it’s split into 78 lessons in total. You’ll find it's a great resource that you will come back to often so make sure you bookmark the parts that interest you.

  2. 2
    Article
    Avatar of devtoDEV·4y

    Reactjs Protected Route

    React Router provides a convenient way to define protected routes that require authentication. By default, these routes are treated as public routes and anyone can access them. To create a protected route, you need to use the React Router Route component and specify the path that you want to protect.

  3. 3
    Article
    Avatar of asayerasayer·4y

    Understanding React's useRef() hook

    A built-in React hook called useRef accepts one argument or parameter as its initial value. This tutorial will look at a demo that accepts user input and saves it in a reference, or ref, while building a simple task app with TypeScript.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Event Delegation in JavaScript –Explained with an Example

    Event Delegation is a pattern based on the concept of Event Bubbling. It is an event-handling pattern that allows you to handle events at a higher level in the DOM tree than the level where the event was first received.

  5. 5
    Article
    Avatar of css_tricksCSS-Tricks·4y

    The Difference Between Web Sockets, Web Workers, and Service Workers | CSS-Tricks

    The difference between Web Sockets, Web Workers, and Service Workers is a two-way communication protocol. A service worker acts as a network proxy between an app, the browser, and the server, allowing scripts to run even in the event when the network goes offline.