Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save matwal42083/daabc8e13cb3eb4541ee23034145ae94 to your computer and use it in GitHub Desktop.
Save matwal42083/daabc8e13cb3eb4541ee23034145ae94 to your computer and use it in GitHub Desktop.
Function Expression Example
Assigns a function to a variable. It is not hoisted, so you must define it before calling.
const plantNeedsWater = function (day, plantNeedsWater) {
if (day === 'Wednesday') {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment