Skip to content

Instantly share code, notes, and snippets.

@raphaelgabbarelli
Last active August 29, 2015 14:12
Show Gist options
  • Save raphaelgabbarelli/eea2825a9f5c730d08a6 to your computer and use it in GitHub Desktop.
Save raphaelgabbarelli/eea2825a9f5c730d08a6 to your computer and use it in GitHub Desktop.
the greeters
var hello = function(){
this.greet = function(name){
console.log("hello " + name);
};
};
function arr(){
this.greet = function(name){
console.log("arrrr " + name);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment