Can jQuery differentiate between a regular array, an array of arrays, and an array of objects?
var a = [1,2,3];
var a2 = [[12,'Smith',1],[13,'Jones',2]];
var a3 = [{val:'12', des:'Smith', num:1}];
//a = regular array
//a2 and a3 = multidimensional arrays
What is the best way to achieve this? Appreciate any help you can provide.