Array.isArray works fast, but it isn't supported by all versions of browsers. So you could make an exception for others and use universal method:
Utils = {};
Utils.isArray = ('isArray' in Array) ?
Array.isArray :
function (value) {
return Object.prototype.toString.call(value) === '[object Array]';
}