Created
January 20, 2016 19:41
-
-
Save verekia/39f75638c3eef2163233 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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