SwVitaliy

Untitled

Aug 11th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. a = { a:1 }, b = { b:2 }
  2. Object
  3. a
  4. Object
  5. c = [a, b]
  6. [
  7. Object
  8. ,
  9. Object
  10. ]
  11. c.indexOf({ a:1 })
  12. -1
  13. c.indexOf(a)
  14. 0
  15. c.indexOf({ b:2 })
  16. -1
  17. c.indexOf(b)
  18. 1
Advertisement
Add Comment
Please, Sign In to add comment