Show Menu
Cheatography

(draft) JSDoc, SoDash style Cheat Sheet (DRAFT) by

JSDoc - the key and convenient bits

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Type

Nullable / optional
{?number}
?
Not nullable / essential
{!number}
!
OR
{(numb­er|­str­ing)}
|
Reference
 

Basic Types

number
string
boolean
Object (rarely useful - be more specific)
string[], MyClass[]