Skip to content

Instantly share code, notes, and snippets.

@iruslani
Created June 12, 2012 20:39
Show Gist options
  • Save iruslani/2919986 to your computer and use it in GitHub Desktop.
Save iruslani/2919986 to your computer and use it in GitHub Desktop.
The basic JavaScript Object
var myObject = {
sayHello : function() {
console.log('hello');
},
myName : 'Iwan'
};
myObject.sayHello(); // logs 'hello'
console.log(myObject.myName); // logs 'Iwan'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment