http://gothoxeo4g2yqa3ba27z3sigeprlwan3deogkejooe7zqccou6qgkvad.onion/ryanmcdermott/clean-code-javascript/blob/master/README.md
In your class functions, simply return `this` at the end of every function, 1235 and you can chain further class methods onto it. 1236 1237 **Bad:** 1238 1239 ```javascript 1240 class Car { 1241 constructor ( make , model , color ) { 1242 this . make = make ; 1243 this . model = model ; 1244 this . color = color ; 1245 } 1246 1247 setMake ( make ) { 1248 this . make = make ; 1249 } 1250 1251 setModel ( model ) { 1252 this ....