Weekly Gist 20170505
How to not suck at design, a 5 minute guide for the non-designer.
Clean Code concepts adapted for JavaScript #cleancode
| // Old | |
| function sum($elements) { /* calculate sum */ } | |
| function product($elements) { /* calculate sum */} | |
| // New | |
| var MathUtils = { | |
| function sum($elements) {}, | |
| function product($elements) {} | |
| }; |