Tags

Posts filtered by the tag study-notes

  • TS Basic: Typing Errors in Try-Catch

    March 24, 2025

    Sometimes you don’t really know what error your backend or API is providing so Typescript will question the type on your try...catch block your using so this are the different types you can use.

  • TS Basic: Utilities

    March 19, 2025

    Type utilities you can use to transform types or make them more reusable. These are set of built-in generic types.

  • TS Basic: Narrowing

    February 26, 2025

    Narrowing refers to the process of refining the type of a variable or expression based on certain condition. It’s allow us to filter more specific assertions about the type of a value enabling better type checking.

  • Learning React Context API

    September 10, 2023

    Context API is a feature added in Reacy 16.3 that allows to share states across the entire application.