Why can't we directly call the functions from Array on arguments?
function f(){
var x = Array.prototype.slice.call(arguments,1);
//var x = arguments.slice(1); **error**
alert(x);
}
f(1,2,3);
Update: If arguments is not an array object, then how does the Array.prototype.slice function works on an non-array object?