Skip to content

Instantly share code, notes, and snippets.

@MinChanSike
Forked from verekia/main.js
Created September 5, 2018 09:49
Show Gist options
  • Save MinChanSike/8f88c439dcb8d0404c1047dfb804e94f to your computer and use it in GitHub Desktop.
Save MinChanSike/8f88c439dcb8d0404c1047dfb804e94f to your computer and use it in GitHub Desktop.
var MyMath = (function(){
// Put your private variables and functions here
return { // Here are the public methods
add:function(a, b){
return a + b;
}
};
})();
console.log(MyMath.add(1, 2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment