Created
July 3, 2020 13:17
-
-
Save luisfelipe-dev/f4da2d19561b7ca1eaa037a3d8543667 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 user = { | |
name: "Luís Felipe" | |
age: "28", | |
ocupation: "Front-end" | |
} | |
const userArray = Object.values(user) | |
console.log(userArray) | |
//["Luís Felipe", "28", "Front-end"] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment