
# Null

`Null` is the `Type` of Javascript's beloved `null` value.

Here are some use cases for `Null`:

```Coffeescript
Null.isTypeOf null # returns `true`
Null() # returns `null`
```

This type is great for property validation too.
