Skip to content

Instantly share code, notes, and snippets.

@jonvuri
Created June 20, 2015 15:15
Show Gist options
  • Save jonvuri/5d7b91c831450c7587e0 to your computer and use it in GitHub Desktop.
Save jonvuri/5d7b91c831450c7587e0 to your computer and use it in GitHub Desktop.
var greeter = function greet() {
console.log("Hello " + greet.person);
}
greeter.person = "Andy";
greeter();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment