My Arrays are:
var FirstArr=[
{
"id":"123",
"aboutUS":"Demo About Us"
},
{
"id":"234",
"tutorial":"Demo Tutorial"
}
];
var SecondArr=[
{
data:"aboutUS"
},
{
"data":"toturial"
}
];
I am not getting the value in temp,sTemp as a property is not working and showing undefined.
var sTemp=SecondArr[0].data;
var temp=FirstArr[0].sTemp;
Please Suggest me the solution....