1 2 3 4 5 6 7
var o = {}; for(var i=0; i<5; i++) { o.p = 2; o.watch("p", function() { }); o.p = 2; delete o.p; }