var Download = request.download; // a["{\"status\":\"success\",\"data\":\"no\"}"] // String
How can parse this string?
var Download = request.download; // a["{\"status\":\"success\",\"data\":\"no\"}"] // String
How can parse this string?
I'm not sure I get what you are trying to do here, but I will assume that you want to parse the string into an object:
var string = "{\"status\":\"success\",\"data\":\"no\"}";
var obj = JSON.parse(string);
If you really want an array, you can look this StackOverflow post to convert you're object into an array.
To parse that string just use JSON.parse(). Run a js console and try this
JSON.parse("{\"status\":\"success\",\"data\":\"no\"}");
That will return a js object.