Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function test() {}
  2. test.x = "someval";
  3. var y = new test(); //returns someval
  4.  
  5. function test() {}
  6. test.x = "someval";
  7. test.z = "otherval";
  8. var y = new test(); //returns otherval
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement