I am trying to figure out the below problem
var result = {"name":"Launches","Data":"50,56,34,25,25,55"}
how can we print this variables value(result) into below variable using jquery or javascript
Series :[result];
any idea. I tried this by document.write() but it is writing into screen. But I need the above variables value as input for Series .
I need a result like this
Series:[{"name":"Launches","Data":"50,56,34,25,25,55"}];