http://gothoxeo4g2yqa3ba27z3sigeprlwan3deogkejooe7zqccou6qgkvad.onion/ryanmcdermott/clean-code-javascript/blob/master/README.md
Linters can warn you about unused properties, which would be impossible 260 without destructuring. 261 262 **Bad:** 263 264 ```javascript 265 function createMenu ( title , body , buttonText , cancellable ) { 266 // ... 267 } 268 269 createMenu ( "Foo" , "Bar" , "Baz" , true ); 270 271 ``` 272 273 **Good:** 274 275 ```javascript 276 function createMenu ({ title , body , buttonText , cancellable }) { 277 // ... 278 } 279 280 createMenu ({ 281 title : "Foo" , 282 body : "Bar" , 283 buttonText...