Last active
May 14, 2019 21:52
-
-
Save tylercollier/e74692348621e05d21ff7d6b2dfff784 to your computer and use it in GitHub Desktop.
medium-article-closures
This file contains 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
const message = 'hello from a closure' | |
setTimeout(() => { | |
console.log(message) | |
}, 1000) | |
// or, same thing on one line | |
setTimeout(() => console.log(message), 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment