Skip to content

Instantly share code, notes, and snippets.

@ifyoumakeit
Created October 26, 2017 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ifyoumakeit/4c140118300d8e9e1dc1a09d04296595 to your computer and use it in GitHub Desktop.
Save ifyoumakeit/4c140118300d8e9e1dc1a09d04296595 to your computer and use it in GitHub Desktop.
Getter Example
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