http://gothoxeo4g2yqa3ba27z3sigeprlwan3deogkejooe7zqccou6qgkvad.onion/ryanmcdermott/clean-code-javascript/blob/master/README.md
$/ ; 128 const [ _ , city , zipCode ] = address . match ( cityZipCodeRegex ) || []; 129 saveCityZipCode ( city , zipCode ); 130 ``` 131 132 ** [ ⬆ back to top ]( #table-of-contents )** 133 134 ### Avoid Mental Mapping 135 136 Explicit is better than implicit. 137 138 **Bad:** 139 140 ```javascript 141 const locations = [ "Austin" , "New York" , "San Francisco" ]; 142 locations . forEach ( l => { 143 doStuff (); 144 doSomeOtherStuff (); 145 // ... 146 // ... 147 // ... 148 // Wait, what is `l` for again?...