isObject_.isObject(value)
Returns true if value is an Object. Note that JavaScript arrays and functions are objects, while (normal) strings and numbers are not.
1 2 3 4 | _.isObject({}); => true _.isObject(1); => false |
isObject_.isObject(value)
Returns true if value is an Object. Note that JavaScript arrays and functions are objects, while (normal) strings and numbers are not.
1 2 3 4 | _.isObject({}); => true _.isObject(1); => false |
Designed by : w10schools
service@w10schools.com
Please login to continue.