Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
const SwapX = {
  
  observable : function observable(props){
    const _parent = this;
    let obj = {}, prop;
    const keys = Object.keys(props)
    for(let i=0; i < keys.length; i++){
       prop = keys[i];
       (function (prop){
         Object.defineProperty(obj,prop,{
          get: function(){
            return (this.value || props[prop] )
          },
          set: function(value){
            if(value !== this.value){
              this.value = value;
              _parent.markDirty(prop)
              _parent.run()
            }
          }
         })
       })(prop)
    }
  
    return obj
  },
  
  dirty : [],
  
  autorun : function (callback){
    this.run = callback;
  },
  markDirty(prop) {
    this.dirty.push(prop)
  }
}
const appState = SwapX.observable({
  count : 2,
  name : 'Swapnil'
})
SwapX.autorun(function(){
  console.log('Changed properties',SwapX.dirty)
})
var a = 1
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
swapnil-mishrapro
0viewers