(v): v is number => v !== null && v !== undefined 🧠 What Is a Type Predicate? A type predicate is a way to tell TypeScript: “If this condition is true, then you can safely treat v as a specific type.” The syntax is: (parameter): parameter is Typ...