arguments[]

by Denni Adam

JavaScript

function fx(a1,a2) {
    alert(arguments.length);
}

fx(1, 2, 3, 4);