Sprawdź, czy zmienna jest tablicą w JavaScript
// inside if else check
if(Array.isArray(myVarToTest)) {
// myVatToTest is an array
} else {
// myVarToTest is not an array
}
Vivacious Vendace