Last active
February 21, 2022 17:37
-
-
Save blarfoon/08f6e996a2256f6f4a814ff250081d64 to your computer and use it in GitHub Desktop.
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 myFunc() { | |
console.log("hi", myFunc.who); | |
} | |
myFunc.who = "mom"; | |
myFunc(); // > hi mom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment