Which lodash method or function is best suited for extracting the ids from the array below and creating a comma-separated string out of them?
var myArray = [
{
tag: 'wunwun',
id: 132
},
{
tag: 'davos',
id: 452
},
{
tag: 'jon snow',
id: 678
}
]
Result should be: '132, '452', '678'