Bonarja

Results 1 comments of Bonarja

```js var list=[ {value:"test 1"}, {value:"test 2"}, {value:"test 3"} ] watch(list,function(name,type,val,oldval){ // get index var index = list.indexOf(this); console.log(index,name,type,val,oldval); }); list[1].value="new value"; // 1 'value' 'set' 'new value' 'test 2'...