Skip to content

Instantly share code, notes, and snippets.

@WebBamboo
Created November 18, 2016 17:24
Show Gist options
  • Save WebBamboo/45ebce0f5e8bfd8cc5cdd8b427b9f30b to your computer and use it in GitHub Desktop.
Save WebBamboo/45ebce0f5e8bfd8cc5cdd8b427b9f30b to your computer and use it in GitHub Desktop.
Loop through JS object
for (var key in p) {
if (p.hasOwnProperty(key)) {
console.log(key + " -> " + p[key]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment