One other suggestion for a coding standard, which was vetted and affirmed by Jayson a long time ago, relates to the use of strict comparisons. I will attempt to summarize past discussions:

When strict comparisons provide the intended behavior, using strict comparisons make these intentions clear, improves the readability of code, and avoids accidental matches. Strict comparisons also have slightly better performance, since type conversions are skipped, unlike the case for {{==}}.

Thoughts?

Cheers,
Gavin

Reply via email to