Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Created March 4, 2017 16:41
Show Gist options
  • Save egrueter-dev/4592773f187e6c50cd81000b342023e9 to your computer and use it in GitHub Desktop.
Save egrueter-dev/4592773f187e6c50cd81000b342023e9 to your computer and use it in GitHub Desktop.
function-property
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