Guest User

Untitled

a guest
Aug 27th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. window . watcher = { _value : null };
  2. Object . defineProperty ( watcher ,'value',
  3. {
  4. set : function ( v ){
  5. console . log ('o bojemoy!', v );
  6. this . _value = v ;
  7. },
  8. get : function (){
  9. return this . _value ;
  10. }
  11. },
  12. )
  13.  
  14. window . watcher . value = 1 ;
  15. window . watcher . value = 10 ;
  16. window . watcher . value = 15 ;
Advertisement
Add Comment
Please, Sign In to add comment