Skip to content

Instantly share code, notes, and snippets.

@jzeltman
Created April 19, 2012 02:14
Show Gist options
  • Save jzeltman/2417911 to your computer and use it in GitHub Desktop.
Save jzeltman/2417911 to your computer and use it in GitHub Desktop.
i don't know what i'm doing with the return method
var testObj = {};
testObj.name = "Larry";
testObj.getName = function() { return testObj.name; }
// Outputs: function () { return testObj.name; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment