Created
February 17, 2021 19:31
-
-
Save jonathan-fielding/b9660894016aa1eed9f2a7f46477702a 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
const person = { | |
name: 'Jonathan', | |
age: 21, | |
gender: 'male' | |
} | |
console.log(Object.values(person)); // Result [ 'Jonathan', 21, 'male' ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment