Skip to content

Instantly share code, notes, and snippets.

@kudapara
Created April 18, 2018 19:49
Show Gist options
  • Save kudapara/b28f76c9c669f5eb2bc1bfa7a2d87d49 to your computer and use it in GitHub Desktop.
Save kudapara/b28f76c9c669f5eb2bc1bfa7a2d87d49 to your computer and use it in GitHub Desktop.
Code that violates ISP
class Shape {
constructor () {}
area () {}
volume () {}
}
class Triangle extends Shape {
constructor (base, height) {
this.base = base
this.height = height
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment