string typeof(multi-type)
Return Type: string
Parameters: multi-type
Description:
Returns the variable type of the input parameter as a string.
Example
Code |
1 >>int
i;
2 >>disp(typeof(i));
int
3 >>disp(typeof(window w));
window
4 >>disp(typeof("hello"));
string |