Globals¶
typeof¶
Takes in a value and returns the type. The type will be any one of Boolean, Function, NativeFunction, AsyncNativeFunction, Null, Number, String, Object, List or Future.
typeof(10);
# Number
typeof("Hello");
# String