Last active
February 9, 2018 23:45
-
-
Save nomoney4me/84f61d4f80ccba29f27a5f870e31376e 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
[ | |
{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'}, | |
] |
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
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