Skip to content

Instantly share code, notes, and snippets.

@BolajiAyodeji
Created March 10, 2019 18:13
Show Gist options
  • Save BolajiAyodeji/fc94861337260f9c8ab16153801e847c to your computer and use it in GitHub Desktop.
Save BolajiAyodeji/fc94861337260f9c8ab16153801e847c to your computer and use it in GitHub Desktop.
let obj = {
key1: "value1",
key2: "value2",
key3: "value3"
}
let items = Object.values(obj);
console.log(items);
// ["value1", "value2", "value3"]
items.map(value => {
console.log(value)
});
// value1
// value2
// value3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment