Guest User

Untitled

a guest
Apr 26th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var Klass = new Class((function() {
  2.  
  3. var private_method = function() {
  4. // bla bla bla
  5. };
  6.  
  7.  
  8. return {
  9.  
  10. initialize: function() {
  11. this.bla = 'bla';
  12.  
  13. private_method('bla', 'bla', 'bla');
  14.  
  15. // or in context of the object
  16.  
  17. private_method.call(this, 'bla', 'bla', 'bla');
  18. }
  19.  
  20.  
  21.  
  22. }})());
Add Comment
Please, Sign In to add comment