Guest User

Untitled

a guest
May 27th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. var P = function(x){
  2. this.x = x;
  3. };
  4. P.prototype.blah = function(){
  5. };
  6.  
  7. var test = new P(7);
  8. (test instanceof P) && (P==test.constructor)
Add Comment
Please, Sign In to add comment