Created
November 10, 2016 13:13
-
-
Save nrojas13/a9250eae9f96a4af7c97acf20e77c77d to your computer and use it in GitHub Desktop.
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 object) { | |
// obj is the value assigned to the key in the object | |
var obj = object[key]; | |
console.log(obj); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment