Validating types – type guards – TypeScript Patterns for Angular
Now that we know the TypeScript inference mechanism, we can understand another feature present in it, type guards. Let’s consider these in the following example:function getDiscount(value: string | number) { if (typeof value === “number”) { return…