Skip to content

Instantly share code, notes, and snippets.

@PrincessEve
Last active January 25, 2018 02:51
Show Gist options
  • Save PrincessEve/bcc152444d5e3f5a4e57f73543f095d5 to your computer and use it in GitHub Desktop.
Save PrincessEve/bcc152444d5e3f5a4e57f73543f095d5 to your computer and use it in GitHub Desktop.
javascript for-in loop for debugging
# we can debug event object by
for (var property in event) {
console.log(property + "=" + event[property]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment