MCQ
Which method is used to check if a value is an array?
JavaScript
A Array.isArray()
B isArray()
C typeof
D instanceof
Explanation

Array.isArray() is the recommended method to check if a value is an array.