Skip to content

Instantly share code, notes, and snippets.

@jakerobers
Created October 28, 2020 13:04
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 jakerobers/bda43e2cfc7af6d2418103a5ede51ea4 to your computer and use it in GitHub Desktop.
Save jakerobers/bda43e2cfc7af6d2418103a5ede51ea4 to your computer and use it in GitHub Desktop.
const product = {
id: 1,
name: 'Supreme Vacuum Cleaner',
quantity: {
raw: '3',
value: 3,
isValid: true,
},
price: 100
}
const total = product.quantity.isValid ? Number(product.quantity.value) * product.price : "$--"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment