Questions tagged [object.observe]

Object.observe() is a proposed mechanism for bringing true data-binding to the browser. It exposes a mechanism for observing changes to objects and arrays, notifying others of mutations made to these objects.

47 questions
0
votes
1 answer

Object.observe - Multiple observers support?

Can someone tell me if Object.observe() will (once implemented) allow to register multiple observers via multiple calls? Or only the last one will stay? For example if I do: Object.observe(obj, myFirstFunction); Object.observe(obj,…
flawyte
  • 7,678
  • 4
  • 44
  • 63
0
votes
3 answers

What's the most efficient 'watch' js that watch same obj/property from multiple places?

I go for data-binding using ECMA7 Object.observe or Mozilla Object.watch instead of eventEmitter of node. For Object.observe, I cannnot find any implementation around for android browser compatiblity. They basically must use setTimeout polling, so I…
user1028880
1 2 3
4