<script>var people =newkendo.data.ObservableArray([{name:"John Doe"},{name:"Jane Doe"}]);var json = people.toJSON();/* The result can be observed in the DevTools(F12) console of the browser. */console.log(JSON.stringify(json));// outputs [{"name":"John Doe"},{"name":"Jane Doe"}]</script>