Just wondering what is my best approach to merge these two arrays together.
example
var a = [{"ID":11021,"ASSET_NAME":"panda","SERVICE_NAME":"Open Ticket"}]
var b = [{"ID":11021,"ASSET_NAME":"panda","SERVICE_NAME":"open requests"}]
Looking to merge them into:
var c = ["ID":11021, ASSET_NAME:"panda", service_name: ['open requests','open tickets']]
any help would be great.
Thanks