Created
July 6, 2017 14:30
-
-
Save bmorelli25/ae3b3502ca9737ff955b290a46f818d9 to your computer and use it in GitHub Desktop.
closure 2
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
| function speak() { | |
| var words = 'hi'; | |
| return function logIt() { | |
| console.log(words); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment