More actions
Created page with "{{Function_Template|Name=Dictionary_isDictionary|ReturnType=Boolean |Parameters= |Name=Object|ConstantType=All|IsAllowedEmpty=1|IsInteger=1|IsPositive=1 }}" |
No edit summary |
||
Line 1: | Line 1: | ||
{{ | {{HelpFiles}} | ||
=== 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__ |
Revision as of 07:40, 31 October 2016
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