<script>var model =newkendo.data.Model({name:"John Doe"});/* The result can be observed in the DevTools(F12) console of the browser. */console.log(model.dirty);// outputs "false"
model.set("name","Jane Doe");/* The result can be observed in the DevTools(F12) console of the browser. */console.log(model.dirty);// outputs "true"</script>