IsObject
isObject
Check param is object or not
Syntax
isObject(param);
Arguments
param:any type
Return type
bool
Examples
number x=1;
isObject(x);
// false
isObject(1);
// true
Check param is object or not
isObject(param);
param:any type
bool
number x=1;
isObject(x);
// false
isObject(1);
// true