Skip to content

Instantly share code, notes, and snippets.

@jakerobers
Created October 28, 2020 13:04
Show Gist options
  • Save jakerobers/19dd6b34960eb4770933251962893fe6 to your computer and use it in GitHub Desktop.
Save jakerobers/19dd6b34960eb4770933251962893fe6 to your computer and use it in GitHub Desktop.
const product = {
id: 1,
name: 'Supreme Vacuum Cleaner',
quantity: {
raw: '3',
value: 3,
validation: {
isValid: true,
errMessage: ""
}
},
price: 100
}
const total = product.quantity.validation.isValid ? Number(product.quantity.value) * product.price : "$--"
const error = product.quantity.validation.isValid ? product.quantity.validation.errMessage : null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment