Learn here about how to find variable data is array or not
if (value instanceof Array) {
alert('value is Array!');
} else {
alert('Not an array');
}
Total Views: 895
Learn here about how to find variable data is array or not
if (value instanceof Array) {
alert('value is Array!');
} else {
alert('Not an array');
}