Skip to content

Instantly share code, notes, and snippets.

@julsfelic
Created November 11, 2014 20:36
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 julsfelic/877dd1bea59767731ec7 to your computer and use it in GitHub Desktop.
Save julsfelic/877dd1bea59767731ec7 to your computer and use it in GitHub Desktop.
var myObject = {
name: "Julian",
sayHello: function() {
console.log("Hello there, " + this.name + "!");
}
};
console.log(myObject.name);
myObject.sayHello();
console.log(myObject);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment