I have this HashMap in Frontend getting from Backend:
var myVar = {"24":{"amount":2,"minutes":30},"32":{"amount":3,"minutes":30}}
Does anyone know how I can get the keys and the values in Javascript/AngularJS? I have tried
{{myVar.24}}
{{myVar.next()}}
but nothing works.