Skip to content

Instantly share code, notes, and snippets.

@appoll
Created November 25, 2020 18:38
Show Gist options
  • Save appoll/a3779b39c3047089a7d47d5ea80dd804 to your computer and use it in GitHub Desktop.
Save appoll/a3779b39c3047089a7d47d5ea80dd804 to your computer and use it in GitHub Desktop.
let book1 = {
title: "Gone with the wind",
price: 30
}
let book2 = {
title: "The godfather",
price: 40
}
// E2. Write a function that takes two parameters: a book and a number (percentage):
// 2.1 Increases the price of the book with that percentage
function increasePriceByPercentage(book, percentage){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment