Skip to content

Instantly share code, notes, and snippets.

@peaceintheheart
Created December 30, 2020 21:05
Show Gist options
  • Save peaceintheheart/2019e4bfee5e5e8b3e3062dea1c41c58 to your computer and use it in GitHub Desktop.
Save peaceintheheart/2019e4bfee5e5e8b3e3062dea1c41c58 to your computer and use it in GitHub Desktop.
/*
In the following function, assume plant is an object.
*/
function addColorToPlant(plant, color) {
plant.color = color;
return plant;
}
// Export `addColorToPlant` here.
module.exports = addColorToPlant;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment