Is there a function or library somewhere that merges 2 JSON data
structures? For instance this:
{ "one": [1,3] }
plus
{ "one": [2] }
equals
{ "one": [1,2,3] }
structures? For instance this:
{ "one": [1,3] }
plus
{ "one": [2] }
equals
{ "one": [1,2,3] }
Comment