Changes between Version 16 and Version 17 of Coding_Conventions


Ignore:
Timestamp:
Mar 5, 2012, 12:35:35 AM (12 years ago)
Author:
historic_bruno
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v16 v17  
    249249}}}
    250250
     251 * Always check for undefined properties and/or invalid object references, if it's possible they could occur.
     252
    251253 * To test if a property or variable is undefined, use explicit type+value equality (`===`), instead of value equality (`==`) or `typeof()`:
    252254{{{