Q. What is the result?
Code:
console.log(0 === -0);
β
Correct Answer: (A)
true
Explanation: 0 and -0 are considered equal in strict comparison.