Today I Learned - Rocky Kev

Tagged “react”

  1. TIL How to implement two-way binding without a framework

    One of the reasons we use React or Vue is because of that sweet sweet two-way binding. It's the automatic syncing of data between the model (data) and the view (UI) in both directions. Any changes made to the data will automatically update the view, and any changes made to the view will automatically update the data.

  2. TIL about Concurrency

    It means tasks can overlap.

  3. TIL How a virtual dom works

    Then, the Virtual dom compares diffs from old virtual dom, and then reapplies it. We apply the minimal amount of changes.

  4. TIL competition between developers

    This tribal-fanboy-stanning is silly.

  5. TIL Compound Components in React

    Compound components, where you combine parent/child data.

  6. TIL using code-splitting to improve your First Contentful Paint (FCP) score

    Code splitting is a technique where you send only the necessary modules to the user in the beginning.

  7. TIL React - VirtualDom

    Fetch this data

  8. TIL React - SetState

    Fetch this data

See all tags.