Skip to content

Instantly share code, notes, and snippets.

@KJlmfe
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KJlmfe/11309414 to your computer and use it in GitHub Desktop.
Save KJlmfe/11309414 to your computer and use it in GitHub Desktop.
JavaScript 设计模式 - Facade(外观模式/门面模式)-组合接口
var getName = function(){
return "Bob";
}
var getSex = function(){
return "man";
}
var getUserInfo = function(){
var info = getName() + getSex();
return info;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment