Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function f() { return Array.prototype.slice.call(arguments); } var arr = f(1, 2, 3, 4); document.write(arr); /* run: 1,2,3,4 */
var aps = Array.prototype.slice; var slice = Function.prototype.call.bind(aps); function f() { return slice(arguments); } var arr = f(1, 2, 3, 4); document.write(arr); /* run: 1,2,3,4 */