Skip to content

Instantly share code, notes, and snippets.

@mannuelf
Created August 3, 2014 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mannuelf/65b44f0414f7d4f4eb8f to your computer and use it in GitHub Desktop.
Save mannuelf/65b44f0414f7d4f4eb8f to your computer and use it in GitHub Desktop.
for loop print out properties of an object
var nyc = {
fullName: "New York City",
mayor: "Bill de Blasio",
population: 8000000,
boroughs: 5
};
for ( var property in nyc ) {
console.log(property);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment