Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var myAwesomeLibrary = {
  2. _prop1 : '', //private property. should not be accessed externally
  3. prop2 : '' //public property.
  4. };
  5.  
  6. //public function of the library
  7. myAwesomeLibrary.fn = function(){};
  8.  
  9. //function meant for internal usage. Should not be called from outside
  10. myAwesomeLibrary._fn2 = function(){};
Add Comment
Please, Sign In to add comment