Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor updates #6

Merged
merged 7 commits into from
Feb 21, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve comments
  • Loading branch information
remarcmij committed Feb 19, 2021
commit 2c57fbea22869a4d3be5db6047064532661318f2
6 changes: 3 additions & 3 deletions 1-JavaScript/Week3/homework/ex4-shoppingCart.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function addToShoppingCart(/* parameters go here */) {
// TODO complete this function
}

console.log(addToShoppingCart('chocolate')); // Prints "You bought bananas, milk, chocolate!"
console.log(addToShoppingCart('waffles')); // Returns "You bought milk, chocolate, waffles!"
console.log(addToShoppingCart('tea')); // Returns "You bought chocolate, waffles, tea!"
console.log(addToShoppingCart('chocolate')); // "You bought bananas, milk, chocolate!"
console.log(addToShoppingCart('waffles')); // "You bought milk, chocolate, waffles!"
console.log(addToShoppingCart('tea')); // "You bought chocolate, waffles, tea!"

// ! Do not change or remove any code below
module.exports = {
Expand Down