IsObject

From Catglobe Wiki
Revision as of 09:52, 31 October 2016 by Hoanghonhungocy (talk | contribs) (Created page with "{{HelpFiles}} === isObject === Check param is object or not === Syntax === isObject(param); === Arguments === param:any type === Return type === bool === Examples ===...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


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