function foo(bar) { if (bar > 1) { return [1,2,3]; } else { return 1; } }
并说我打电话给foo(1),我怎么知道它返回一个数组?@H_404_5@
function isArray(obj) { return Object.prototype.toString.call(obj) === '[object Array]'; }
是jQuery.isArray的实施方式.@H_404_5@
查看这篇文章:@H_404_5@
> isArray: Why is it so bloody hard to get right?@H_404_5@