Verifique se uma variável é uma matriz em JavaScript
// inside if else check
if(Array.isArray(myVarToTest)) {
// myVatToTest is an array
} else {
// myVarToTest is not an array
}
Vivacious Vendace