Returns the type of the given argument, as a string.
typeOf("") // "string" typeOf([]) // "array" typeOf(true) // "bool" typeOf(null) // "null" typeOf(1) // "int" typeOf(1f) // "float" typeOf(1.1) // "float"
Last updated 28 days ago