My question is very simple, I have a following JSON Typescript Object and I like to Iterate trought the JSON properties
{\"work_type\":\"Fabricación\",\"work_t
You can get all the keys using Object.Keys and assign to a variable as follows,
this.properties=JSON.parse(this.values); let response = Object.keys(this.propertie);
now you can use ngFor over it,
{{properties[key]}}