Recall that Comparison operators allow you to test the relationship (equality and identity) between objects. You'll be coding along in js/comparison.js. Make sure you run learn -b to run the tests. == ...
This repository demonstrates a common JavaScript bug related to the handling of negative zero (-0) during comparisons. The loose comparison (===) does not distinguish between 0 and -0, leading to ...