i have three JSON files
json1
contains[[1,5],[5,7],[8,10]]
json2
contains[[5,6],[4,5],[5,8]]
json3
contains[[4,7],[3,4],[4,8]]
I want to merge them into one single file jsonmerge
:
[[[1,5],[5,7],[8,10]],[[5,6],[4,5],[5,8]],[[4,7],[3,4],[4,8]]]
I tried concatenate but it gave results in this format
[[5,6],[4,5],[5,8]],
[[5,6],[4,5],[5,8]],
[[4,7],[3,4],[4,8]]
Any suggestions?
thanks in advance.