Skip to content

Instantly share code, notes, and snippets.

@auzwang
Last active August 29, 2015 14:15
Show Gist options
  • Save auzwang/4aed37f1913102c0a013 to your computer and use it in GitHub Desktop.
Save auzwang/4aed37f1913102c0a013 to your computer and use it in GitHub Desktop.
Object.observe Observer Callback Snippet
(function () {
'use strict';
function observer(changes) {
changes.forEach(function (change) {
console.log(change);
});
}
window.observer = observer;
console.log('window.observer added');
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment