Skip to content

Instantly share code, notes, and snippets.

@nadeesha
Last active May 16, 2019 22:09
Show Gist options
  • Save nadeesha/0105c5cb4a1c56be7497a9b92a8fb9c1 to your computer and use it in GitHub Desktop.
Save nadeesha/0105c5cb4a1c56be7497a9b92a8fb9c1 to your computer and use it in GitHub Desktop.
function getCarConfig(car) {
let description;
let newPrice;
if (car.rating > 4) {
description = "good car";
newPrice = car.price + 1000 * car.rating;
} else {
description = "bad car";
newPrice = car.price;
}
return {
description,
newPrice,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment