Guest User

Untitled

a guest
Feb 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. const a = {
  2. i: 1,
  3. toString: function () {
  4. return a.i++;
  5. }
  6. }
  7. console.log(a == 1 && a == 2 && a == 3) // true
Add Comment
Please, Sign In to add comment