Created
March 27, 2018 16:01
-
-
Save sultanshakir/c1ec549506b549fe6eabf937e11f9498 to your computer and use it in GitHub Desktop.
Loop through or enumerate a JavaScript object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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