Assuming I have a json variable inside a javascript file,
{
A : "a",
B : "b",
C : "c"
}
now, I have a javascript variable and append the value to the value of the json variable. Somethinhg like this
{
A : "a" + var1,
B : "b" + var2 ,
C : "c" + var3
}
is it possible??