Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created July 3, 2020 13:17
Show Gist options
  • Save luisfelipe-dev/f4da2d19561b7ca1eaa037a3d8543667 to your computer and use it in GitHub Desktop.
Save luisfelipe-dev/f4da2d19561b7ca1eaa037a3d8543667 to your computer and use it in GitHub Desktop.
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