Coggle requires JavaScript to display documents.
const bigInt = 1234567890123456789012345678901234567890n;
n
undefined
typeof x
typeof(x)
typeof undefined // "undefined" typeof 0 // "number" typeof 10n // "bigint" typeof true // "boolean" typeof "foo" // "string" typeof Symbol("id") // "symbol" typeof Math // "object" typeof null // "object" (1) typeof alert // "function" (2)