I have a list which holds multiple json strings like this
a = [{"name": "Alex"},{"Age": 25},{"Address": "16, Mount View"}]
I would like to merge these into a single array like this
a = [{"name": "Alex","Age": 25,"Address": "16, Mount View"}]
I have tried using jsonmerge
but no luck its working fine when using head' and
base` values.
Can some one give me a hand in this.
I have also gone through a similar question in stack but it shows merge for separate json but not json in a list How to merge two json