Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

IsObject: Difference between revisions

From Catglobe Wiki
Created page with "{{HelpFiles}} === isObject === Check param is object or not === Syntax === isObject(param); === Arguments === param:any type === Return type === bool === Examples ===..."
 
Hovietluu (talk | contribs)
No edit summary
 
Line 26: Line 26:
// true
// true
</source> __NOTOC__
</source> __NOTOC__
[[Category:General_Functions]]

Latest revision as of 03:39, 30 May 2017


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