6

When your linter suggests you to use '===' but want to use '==' for future proofing....

Comments
  • 2
    By "future proofing" do you mean "bugs for exploitation"? I am assuming that this is JavaScript, in which case you should always explicitly show what you are comparing against with the strict comparison operator. It's just cleaner code.
Add Comment