The function func below is logging the result of some equality expressions:
function func(x, y) {
console.log(arguments[0] == x);
console.log(arguments.length == 2);
console.log(arguments[0] == arguments[1]);
console.log(arguments.callee == func);
console.log(arguments.callee == this);
}
If func is called as func(2,0,2)
, select all those expressions that would return true: