Skip to content

Instantly share code, notes, and snippets.

@deleteman
Created March 28, 2019 03:13
Show Gist options
  • Save deleteman/27d7a61932da80d82965eefd02938fbb to your computer and use it in GitHub Desktop.
Save deleteman/27d7a61932da80d82965eefd02938fbb to your computer and use it in GitHub Desktop.
object keys
let obj = {
a: 1,
b: 2,
test: function() { return 0}
}
for(m in obj) {
console.log(m)
}
console.log(Object.keys(obj))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment