Skip to content

Instantly share code, notes, and snippets.

@sultanshakir
Created March 27, 2018 16:01
Show Gist options
  • Select an option

  • Save sultanshakir/c1ec549506b549fe6eabf937e11f9498 to your computer and use it in GitHub Desktop.

Select an option

Save sultanshakir/c1ec549506b549fe6eabf937e11f9498 to your computer and use it in GitHub Desktop.
Loop through or enumerate a JavaScript 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