Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function Dog () {
  2.  
  3. if (!this instanceof Dog) {
  4. return Dog.apply(this, arguments);
  5. }
  6.  
  7. this.woof = "woof"
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement