michael@0: var o = {}; michael@0: for(var i=0; i<5; i++) { michael@0: o.p = 2; michael@0: o.watch("p", function() { }); michael@0: o.p = 2; michael@0: delete o.p; michael@0: }