Created
October 26, 2017 18:16
-
-
Save ifyoumakeit/4c140118300d8e9e1dc1a09d04296595 to your computer and use it in GitHub Desktop.
Getter Example
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
const order = { | |
subtotal: 35, | |
tax: 0.6, | |
get total() { return this.subtotal * this.tax } | |
} | |
order.subtotal // 35 | |
order.tax // 0.6 | |
order.total // 21 | |
order.subtotal = 36 | |
order.total // 21.599999999999998 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment