Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window . watcher = { _value : null };
- Object . defineProperty ( watcher ,'value',
- {
- set : function ( v ){
- console . log ('o bojemoy!', v );
- this . _value = v ;
- },
- get : function (){
- return this . _value ;
- }
- },
- )
- window . watcher . value = 1 ;
- window . watcher . value = 10 ;
- window . watcher . value = 15 ;
Advertisement
Add Comment
Please, Sign In to add comment