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

Dictionary isDictionary: Difference between revisions

From Catglobe Wiki
Created page with "{{Function_Template|Name=Dictionary_isDictionary|ReturnType=Boolean |Parameters= |Name=Object|ConstantType=All|IsAllowedEmpty=1|IsInteger=1|IsPositive=1 }}"
 
Tungocman (talk | contribs)
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Function_Template|Name=Dictionary_isDictionary|ReturnType=Boolean
{{HelpFiles}}
|Parameters=
 
|Name=Object|ConstantType=All|IsAllowedEmpty=1|IsInteger=1|IsPositive=1
=== Dictionary_isDictionary ===
}}
 
Check object is dictionary
 
=== Syntax ===
 
Dictionary_isDictionary(param);
 
=== Arguments ===
 
param: any type
 
=== Return type ===
 
bool
 
=== Examples ===
 
<source lang="javascript">
Dictionary_isDictionary(1);
// false
Dictionary_isDictionary({"A":true});
// true
</source> __NOTOC__
[[Category:General_Functions]]

Latest revision as of 08:10, 5 June 2017


Dictionary_isDictionary

Check object is dictionary

Syntax

Dictionary_isDictionary(param);

Arguments

param: any type

Return type

bool

Examples

Dictionary_isDictionary(1);
// false
Dictionary_isDictionary({"A":true});
// true