Skip to main content

typeOf

Returns a String with the type name of a variable

Syntax

typeOf(Any Var)

Description

The typeOf function returns the string name of the type of variable of the passed in variable

Example

a = "Hello"
print typeOf(a)
Scalar