I've got 2 json objects and want to merge them into one unique objects in R.
Here the content of files:
object 1:
{
    "value": [
        "1",
        "2",
        "3"
    ]
}
object 2:
{
    "value": [
        "4",
        "5",
        "6"
    ]
}
expected results
{
    "value": [
        "1",
        "2",
        "3",
        "4",
        "5",
        "6"
    ]
}
I found similar questions in other language (such as this question), but I 'd like to do that in R (and I use jqr package).
Do you have any idea? Thank you.
 
     
    