Skip to content

Instantly share code, notes, and snippets.

@mapiondev
Created June 8, 2010 00:36
Show Gist options
  • Save mapiondev/429430 to your computer and use it in GitHub Desktop.
Save mapiondev/429430 to your computer and use it in GitHub Desktop.
[javascript] 関数型パターン
var func = function(args) {
var pub = {};
var pri = args || {};
pub.get = function(name) {
return pri[name];
};
return pub;
};
var aFunc = func({name: "one"});
var name = aFunc.get("name");
console.log(name); // one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment