object? function:
-
Can also be called as
map? -
Can also be called as
hash?
return true if the argument is an object.
Examples:
- running:
(object? [1, 2, 3, 4])will give:false
- running:
(object? {"key": 12})will give:true
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
object? function:Can also be called as map?
Can also be called as hash?
return true if the argument is an object.
(object? [1, 2, 3, 4])
will give: false(object? {"key": 12})
will give: true