Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Test(){
  2.  
  3. var p = 'hello';
  4.  
  5.     this.printy = function(){
  6.         print('pything says ' + p);
  7.     }
  8.  
  9.  
  10. }                                                                                    
  11.  
  12.  
  13. Test.prototype.shit = function(){
  14.     print('shit called: ' + this.p);
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement