Last active
February 26, 2020 10:19
-
-
Save jwulf/c591a4b6ccf6715e3bc4a5478e33e5d6 to your computer and use it in GitHub Desktop.
Example code from the article https://www.joshwulf.com/blog/2020/02/shun-the-mutant/
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
var a = { | |
loop: (() => setInterval(() => console.log('It lives!'), 1000))() | |
} | |
console.log(a) | |
a = undefined | |
console.log(a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment