Guest User

Untitled

a guest
Jun 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. var a = new MutableValue(
  2. {
  3. __call__: function(b)
  4. {
  5. this = b;
  6. };
  7. }
  8. );
  9.  
  10. a(1); // really a = 1
  11. console.log(a) // 1
Add Comment
Please, Sign In to add comment