Changes between Version 54 and Version 55 of Coding_Conventions


Ignore:
Timestamp:
Mar 23, 2022, 6:17:09 PM (2 years ago)
Author:
Freagarach
Comment:

#6094

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v54 v55  
    428428}}}
    429429   - We prefer `const` when the value is not intended to be changed. This allows easier readability and is considered good practice to prevent accidental changing of values.
     430 * "Do not use let or const in global scope unless strictly necessary." to allow easier moddability. refs. #6094 (mostly a GUI concern)
    430431
    431432