What method, or lodash function would you use to pull out the ids below and generate a comma separated string out of them?
var myArray = [
{
tag: 'wunwun',
id: 132
},
{
tag: 'davos',
id: 452
},
{
tag: 'jon snow',
id: 678
}
]
Like this: '132, '452', '678'