i am trying to pass non numeric index values through JSON but am not getting the data.
var ConditionArray = new Array(); ConditionArray[0] = \"1\"; ConditionArra
If you change the first line to
var ConditionArray = new Object();
you will achieve the desired outcome.