const add = function(a, b) {
return a + b;
}
add(1, 2, 3, 4, 5);
console.log(Object.getOwnPropertyDescriptors(add));
In this code, why can't I find length property of arguments object?
const add = function(a, b) {
return a + b;
}
add(1, 2, 3, 4, 5);
console.log(Object.getOwnPropertyDescriptors(add));
In this code, why can't I find length property of arguments object?