As a Javascript programmer it has been drummed into my head to use ===
instead of ==
where ever possible.
As I'm learning Objective C, even in the official documentation, I only ever see ==
being used.
My question is, should I continue my habits of using strict equality in my Objective C code? Is it as necessary as it is with Javascript? I would assume strict equality gives a slight performance boost, but in Objective C is this boost too slight to make much of a difference?