Skip to content

Instantly share code, notes, and snippets.

@jonathan-fielding
Created February 17, 2021 19:30
Show Gist options
  • Save jonathan-fielding/b828f2206ec77e7b66598c4ec2eda0ac to your computer and use it in GitHub Desktop.
Save jonathan-fielding/b828f2206ec77e7b66598c4ec2eda0ac to your computer and use it in GitHub Desktop.
const person = {
name: 'Jonathan',
age: 21,
gender: 'male'
}
console.log(Object.keys(person)); // Result [ 'name', 'age', 'gender' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment