EN
JavaScript - detect if argument is array instead of object
1 answers
0 points
How can I check if the argument is an array because typeof []
returns 'object'
and I want to distinguish those two?
Example:
xxxxxxxxxx
1
console.log(typeof []); // Output: 'object'
2
console.log(typeof {}); // Output: 'object'
1 answer
0 points
The easiest way to distinguish arrays from objects is to use isArray()
method or typeof
operator.
Practical examples
1. Using isArray()
method
xxxxxxxxxx
1
console.log(Array.isArray([])); // true
2
console.log(Array.isArray({})); // false
2. Using typeof
operator
xxxxxxxxxx
1
console.log([] instanceof Array); // true
2
console.log({} instanceof Array); // false
See also
References
0 commentsShow commentsAdd comment