An interpreted programming language written in Go.
Type conversion and checking functions.
Convert a number to an int. Some information will be lost when converting from a float to an integer.
Convert a number to a float.
Convert any value into its stringified form.
Convert any value into its byte-stringified form.
Return if a variable is a specific type.
Attempts to parse the given string as an integer. If parsing fails, nil is returned.
Same as parseInt() but with floats.
Returns the type of the variable as a string.
Returns if the given identifier is defined.
Returns if object i is an instance of className
. className
can be either a string or an actual class object.
instanceOf
will throw an exception if className
is not a class or string.
Returns the name of the class that i is an instance of. Returns empty string if i is not an object.
Return the internal ID name of a resource object.