iterami/Docs.htm/Standards/JavaScript
- All files must start with 'use strict';
- Functions must be in alphabetical order.
- Functions with 1 arg should pass it directly and unmodified.
- Functions with 2 or more args should pass an "args" arg object and utilize core_args(args).
- Global object usage should be done via "globalThis".
- Global variables should be alphabetically included at the bottom of the file.
- String contain checks should be done via "~string.indexOf(target)".
- Swapping variables should be done via destructuring, such as "[a, b] = [b, a];".
- Use button element instead of input buttons.
- Variables are "const" by default and only changed to "let" if required.