check whether array or not in javascript code example
Example 1: if object is array javascript
Array.isArray(object);
Example 2: check if a variable is array in javascript
// inside if else check
if(Array.isArray(myVarToTest)) {
// myVatToTest is an array
} else {
// myVarToTest is not an array
}