Created
March 4, 2017 16:41
-
-
Save egrueter-dev/4592773f187e6c50cd81000b342023e9 to your computer and use it in GitHub Desktop.
function-property
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 fun() { | |
console.log("hello world"); | |
} | |
fun(); | |
fun.greeting = "Hello from property"; | |
console.log(fun.greeting) //=> "Hello from property" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment