Changes between Version 44 and Version 45 of Coding_Conventions


Ignore:
Timestamp:
Dec 12, 2019, 8:18:58 AM (4 years ago)
Author:
Silier
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v44 v45  
    363363 * Non-standard !SpiderMonkey extensions to the JS language may be used (though prefer to use equivalent standard features when possible). Documentation: [https://developer.mozilla.org/en/JavaScript/New_in_JavaScript/1.6 1.6], [https://developer.mozilla.org/en/JavaScript/New_in_JavaScript/1.7 1.7], [https://developer.mozilla.org/en/JavaScript/New_in_JavaScript/1.8 1.8], [https://developer.mozilla.org/En/JavaScript/New_in_JavaScript/1.8.1 1.8.1], [https://developer.mozilla.org/en/JavaScript/New_in_JavaScript/1.8.5 1.8.5], [https://developer.mozilla.org/en/JavaScript_typed_arrays typed arrays].
    364364
     365 * Omit zeroes after decimal point if possible. Use `1` instead `1.0` and `1.5` instead `1.50`
     366
    365367 * To convert a string to a number, use the "`+`" prefix operator (not e.g. `parseInt`/`parseFloat`):
    366368{{{