Guest User

Untitled

a guest
Dec 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function constructorFn() {
  2.  this.someProperty = "oops!"
  3. }
  4.  
  5. // We've forgotten the "new"
  6. const instance = constructorFn();
  7. instance; //undefined
  8. window.someProperty; // oops!
Add Comment
Please, Sign In to add comment