Guest User

Untitled

a guest
Jun 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. > function Class(param) { if (!param) console.log('fail'); }
  2. > new Class
  3. fail
  4. {}
  5. > x = {};
  6. {}
  7. > x.__proto__ = Class.prototype;
  8. {}
  9. > x instanceof Class
  10. true
  11. > Class.call(x, 'bar');
  12. >
Add Comment
Please, Sign In to add comment