Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Last active February 19, 2020 17:49
Show Gist options
  • Save jasminegmp/30253dd7122424abfa902ca647c18825 to your computer and use it in GitHub Desktop.
Save jasminegmp/30253dd7122424abfa902ca647c18825 to your computer and use it in GitHub Desktop.
let myObject = function(obj){
obj.sayName = function(){
console.log(this.name);
}
}
let me = {
name: 'Jasmine'
}
myObject(me); // Initialize object
me.sayName(); // Invoke 'sayName' function
// Console will output 'Jasmine'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment