Determines whether the provided value is an array of objects.
For checking whether an array contains only plain objects, use isPlainObjectArray.
isPlainObjectArray
The value to be checked.
true if the value is an array of objects, otherwise false.
true
false
This function is an alias for:
isArrayOf<object>(x, isObject); Copy
isArrayOf<object>(x, isObject);
...but rejects empty arrays.
Use isArrayOf if empty arrays should be considered valid.
isArrayOf
1.0
Determines whether the provided value is an array of objects.
For checking whether an array contains only plain objects, use
isPlainObjectArray.