Skip to content

Instantly share code, notes, and snippets.

@daytonn
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save daytonn/bce92d21e36b71482722 to your computer and use it in GitHub Desktop.

Select an option

Save daytonn/bce92d21e36b71482722 to your computer and use it in GitHub Desktop.
CWCPOOJS - function assignments (http://jsbin.com/negali/1/edit?js,console)
var myFunction = function() {
console.log("Hello World");
};
var myObject = {
myMethod: function() {
console.log("I'm a property of an object");
}
};
myFunction();
myObject.myMethod();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment