mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-10 18:03:32 -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.