Hint
Arrays convert to their string representation for coercion: [] → "", [1,2] → "1,2".
console.log([] + []);
console.log([] + {});
console.log(+[]);
console.log(+[42]);[object Object] 0 42
Explanation: []+[]: ""+"" = "". []+{}: ""+"[object Object]". +[]: []→""→0. +[42]: "42"→42.
Key Insight: Arrays convert to their string representation for coercion: [] → "", [1,2] → "1,2".