boolean?

checks if given value is of type :boolean


Parameters

boolean? value :any

Returns

  • :dictionary

Examples

copy
print boolean? true ; true print boolean? false ; true print boolean? 1=1 ; true print boolena? 123 ; false

Related