function foo(x, y, z) {
return x + y + z;
}
const bar = foo.bind(null, 1);
console.log(bar(2, 3));
NaN
123
6
undefined
This question is part of this quiz :