Skip to content

Instantly share code, notes, and snippets.

@nomoney4me
Last active February 9, 2018 23:45
Show Gist options
  • Save nomoney4me/84f61d4f80ccba29f27a5f870e31376e to your computer and use it in GitHub Desktop.
Save nomoney4me/84f61d4f80ccba29f27a5f870e31376e to your computer and use it in GitHub Desktop.
[
{name:'foo', amount:'5', type:'gas'},
{amount:'1', type:'snacks'},
{amount:'3', type:'gas'},
{amount:'6', type:'gas'},
{name:'bar', amount:'5', type:'gas'},
{amount:'7', type:'snacks', something:'else'},
]
var masterArray = json.reduce((obj, curr) => {
if(curr.name) {
obj = curr.name
}
return obj
}, [])
console.log(masterArray)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment