Last active
November 19, 2015 14:32
-
-
Save Andyccs/473475bbbd7697e7979c to your computer and use it in GitHub Desktop.
Medium post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Rectangle { | |
constructor (width, height) { | |
this.width = width | |
this.height = height | |
} | |
set width (width) { this._width = width } | |
get width () { return this._width } | |
set height (height) { this._height = height } | |
get height () { return this._height } | |
get area () { return this.width * this.height } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment