http://gothoxeo4g2yqa3ba27z3sigeprlwan3deogkejooe7zqccou6qgkvad.onion/ryanmcdermott/clean-code-javascript/blob/master/README.md
149 dispatch ( l ); 150 }); 151 ``` 152 153 **Good:** 154 155 ```javascript 156 const locations = [ "Austin" , "New York" , "San Francisco" ]; 157 locations . forEach ( location => { 158 doStuff (); 159 doSomeOtherStuff (); 160 // ... 161 // ... 162 // ... 163 dispatch ( location ); 164 }); 165 ``` 166 167 ** [ ⬆ back to top ]( #table-of-contents )** 168 169 ### Don't add unneeded context 170 171 If your class/object name tells you something, don't repeat that in your 172 variable name. 173 174 **Bad:**...