Skip to content

Instantly share code, notes, and snippets.

@lucian303
Created May 17, 2013 08:58
Show Gist options
  • Save lucian303/5597874 to your computer and use it in GitHub Desktop.
Save lucian303/5597874 to your computer and use it in GitHub Desktop.
proper for in iteration js
for (name in obj) {
if (typeof obj[name] !== 'function') {
console.log(name + ': ' + obj[name]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment