Hello there, I'm currently facing some issues with Angular. I've made a request using $http and received a JSON response like:
{"y":"1","a":"0"}
I need to convert it into an array format like:
{y: 1, a: 0}
I've tried using angular.fromJson(myData) but unfortunately it doesn't seem to work. Any help from experienced individuals would be greatly appreciated as I am still a beginner in this field.