Skip to content

Instantly share code, notes, and snippets.

@coltpini
Last active August 1, 2016 01:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coltpini/a15fdcdaa5a9fa5a36d295675531fe7c to your computer and use it in GitHub Desktop.
Save coltpini/a15fdcdaa5a9fa5a36d295675531fe7c to your computer and use it in GitHub Desktop.
Second stage
let MyObj = {
init(name){
let myObj = {};
myObj.myFunction = (){ MyObj.myFunction(name)};
return myObj;
},
myFunction(name){
console.log(`Hi there, ${name}!!`);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment