JavaScript Equality Comparisons
Learn about the differences between ==, ===, and Object.is().

1. Equality Tester

JavaScript has three different value-comparison operations. Try them out with different values and see the results.

JavaScript Code
Live JavaScript representation with highlighted changes
console.log(5 == 5);
Result