mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-11 12:01:08 -05:00
Using `==` to compare String objects checks references to the two objects, and in this case, those two references point to the same string object created **in the String Pool**. Hence this returns `true`, and not `false`, as is incorrectly stated in the guide. Also fixed formatting.