I am creating the following string response in JSP:
[[[1,2,3,4],[5,6,7,8]],[[9,10,11,12],[13,14,15,16]]]
and getting this response in jQuery.
But I am getting it as 1D array, I need array to be like that only
I am getting respone as
var a = "[[[1,2,3,4],[5,6,7,8]],[[9,10,11,12],[13,14,15,16]]]";