Run ❯
Get your
own
website
×
Change Orientation
type Primitive = string | number | boolean; const value: Exclude
= true; // a string cannot be used here since Exclude removed it from the type. console.log(typeof value);
boolean