How can we concatenate data in binding JSON
{
"firstName": "John",
"lastName": "Doe",
"birthday": {
"day": "01",
"month": "05",
"year": "1982"
},
"address": [
{
"city": "Heidelberg"
}
],
"enabled": "true"
}
I am able to bind single property to label
txt.bindText("data>/birthday/year/");
But I have do display date for that I am trying to concatenate
var dData = "data>/birthday/day/" + " : "+"data>/birthday/month/" + " : " + "data>/birthday/year/";
It is not working. What is proper way to write?