If you want such a strong validation, then the answer is: yes, definitely use ===.
The == also does some very weird things, like comparing completely different string as equal, just because they are numerically equivalent. So === will probably be a better tool for you in most situations.