Created
October 28, 2020 13:03
-
-
Save jakerobers/46a411d3d7587d0092474cd3e7770e3c to your computer and use it in GitHub Desktop.
This file contains 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 product = { | |
id: 1, | |
name: 'Supreme Vacuum Cleaner', | |
quantity: '3', | |
price: 100 | |
}; | |
const total = Number(product.quantity) * product.price; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment