Hi There,
I had a multidimentional array with values.
I wanted to convert it into JSON
I tried it with : json=JSON.stringify(skill_array);
But it gave me output as below:
[["Language","C++","0","1","May 2014","ascasc"],["DataBase","C++","0","1","May 2014","ascasc"],["Language","C++","0","1","May 2014","ascasc"]]
SO how can i convert it into JSON?
in Javascript