I have the following array stored at the front end.
myArr[0] = new Array("AF", "B", "C", "D", "EM", "F", "G", "H", "I", "J");
myArr[1] = new Array("C", "DD", "M", "ED", "F", "DG", "B", "C", "D", "C");
myArr[2] = new Array("F", "G", "H", "I", "E", "F", "G", "H", "I", "J");
i need to get the value of the elements in an array. for example myArr[0][0] should return AF. unfortunately i am getting the position to be find of the array as string of array as follows from a service call.
["myArr[1][6]", "myArr[3][4]", "myArr[4][2]"]
how do i convert this and get the value at the array positions mentioned above. Thanks in advance.