Created
June 8, 2025 04:52
-
-
Save matwal42083/daabc8e13cb3eb4541ee23034145ae94 to your computer and use it in GitHub Desktop.
Function Expression Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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