Skip to content

Instantly share code, notes, and snippets.

@isyoon
Created January 25, 2012 03:33
Show Gist options
  • Save isyoon/1674559 to your computer and use it in GitHub Desktop.
Save isyoon/1674559 to your computer and use it in GitHub Desktop.
somefn1
var Somefn = function(){
var test = 123;
return {
fn1 : function(){
return test*2;
},
fn2 : function(){
return Somefn.fn1()-test;
}
};
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment