Skip to content

Instantly share code, notes, and snippets.

@mohnatus
Created February 13, 2019 16:03
Show Gist options
  • Select an option

  • Save mohnatus/3e9fceb564ddd651c5b58c5b1d677eea to your computer and use it in GitHub Desktop.

Select an option

Save mohnatus/3e9fceb564ddd651c5b58c5b1d677eea to your computer and use it in GitHub Desktop.
correct for-in loop with hasOwnProperty check
for (var name in map) {
if (map.hasOwnProperty(name)) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment