TypeScript — Fixing Null Type Ignored in Union Type
One of the benefits of using TypeScript is the type system which requires you to provide the correct values between all interactions in your application. For values that can be null or undefined, you may need to handle different code paths, for example by using default values. TypeScript comes with …
Continue Reading