beamgrid

What is the type of `Result`?

TypeScript
type IsJavaGood<T extends boolean> = T extends false
    ? "Definitely not"
    : "You must be kidding";
 
type Result = IsJavaGood<false>;

1 of 20