Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Falsy

type Falsy =
| ""
| 0
| -0
| false
| null
| undefined
| void;

§Type

§
"" | 0 | -0 | false | null | undefined | void
[src]