typeOf$()

Returns string datatype.  This command let you check if a variable contains a string or a number. You can omit the dollar character writing command.

Syntax:
string = typeOf$( variable )
string = typeOf( variable )

Returned values may be "string" or "number".

Example:
a=10
b="foo"
print typeOf( a )
print typeOf( b )