Data types

typeof undefined // "undefined"

typeof 1 // "number"

typeof true // "boolean"

typeof "str" // "string"

typeof {} // "object"

typeof [] // "object"

typeof null // "object"

typeof function(){} // "function"