Advertisement
Guest User

eh

a guest
Jul 22nd, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var derp = function(lol) {
  2.     this.prop = lol;
  3. };
  4. derp.prototype.herp = function() {
  5.  
  6. };
  7. derp.prototype.sverp = function() {
  8.  
  9. };
  10.  
  11. // Tai...
  12.  
  13. var derp = function(lol) {
  14.     this.prop = lol;
  15. };
  16.  
  17. derp.prototype = {
  18.  
  19.     constructor: derp,
  20.    
  21.     herp: function() {
  22.    
  23.     },
  24.     sverp: function() {
  25.    
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement