I am currently working with a HashMap in the Frontend that is being retrieved from the Backend:
var myVar = {"24":{"amount":2,"minutes":30},"32":{"amount":3,"minutes":30}}
Can anyone offer guidance on how to access both the keys and values in Javascript/AngularJS? I have attempted
{{myVar.24}}
{{myVar.next()}}
but so far, without success.