Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Base() { }
  2. var base = new Base();
  3. function One() { }; One.prototype = base;  
  4. function Two() {} ; Two.prototype = base;
  5. var one = new One();
  6. var two = new Two();
  7. one instanceof Two; //true
  8. two instanceof One; // true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement