Stuff like this: ``` js return m === Nothing ? true : false; ``` ...can be shortened to this: ``` js return m === Nothing ```