Guest User

Untitled

a guest
May 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function Ball()
  2. {
  3. }
  4.  
  5. Ball.prototype = (function()
  6. {
  7. var private_stuff = function()
  8. {
  9. // Private code here
  10. };
  11.  
  12. return {
  13.  
  14. constructor:Ball,
  15.  
  16. getBallInfo:function()
  17. {
  18. private_stuff();
  19. }
  20.  
  21. };
  22. })();
Add Comment
Please, Sign In to add comment