Skip to content

Instantly share code, notes, and snippets.

@adamgiese
Last active July 15, 2018 20:10
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 adamgiese/d4d74fd94eef0e1652a9cf2401c17cfd to your computer and use it in GitHub Desktop.
Save adamgiese/d4d74fd94eef0e1652a9cf2401c17cfd to your computer and use it in GitHub Desktop.
Array Manipulation: Shopping Cart
const shoppingCart = [
{
name: 'Diet Coke',
price: 1.50,
quantity: 3,
},
{
name: 'Dasani',
price: 1,
quantity: 2,
},
{
name: 'Doritos',
price: 3,
quantity: 1,
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment