Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active July 10, 2025 22:17
Show Gist options
  • Save mcsee/809c0549ca6d1fd122e47cceaf37432c to your computer and use it in GitHub Desktop.
Save mcsee/809c0549ca6d1fd122e47cceaf37432c to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
class Auto {
constructor(motor) {
this.motor = motor
}
startEngine(motor) {
motor.ignite()
}
}
// Usage
const motor = new Motor()
const auto = new Auto(motor)
auto.startEngine(motor)
// Redundant and maybe inconsistent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment