Modern Cheatsheet • by @CodersStudy
+ | Addition |
- | Subtraction |
* | Multiplication |
/ | Division |
% | Modulus |
** | Exponentiation |
const
and let
instead of var
===
for
loops for performance-critical code
/\d+/ | One or more digits |
/\w+/ | Word characters |
/\s+/ | Whitespace |
/^.+$/ | Start to end |
/[a-z]/i | Case insensitive |
JavaScript Cheatsheet • by @CodersStudy
Covers ES6+ features and modern JavaScript patterns