I'm trying to print a JSON (link to the JSON) in an html file.
JSON:
{
  "ricette": {
    "FRIGGITRICI": {
      "Alici": [
        [
          {"500": "scongelamento"}
        ],
        [
          {"60": "nada"}
        ]
      ],
      "Baccalà": [
        [
          {"500": "scongelamento"}
        ],
        [
          {"210": "immerso"},
          {"210": "cestello su"},
          {"30": "immerso"}
        ]
      ]
    },
    "GRIGLIA": {
      "Baccalà": [
        [
          {"500": "scongelamento"}
        ],
        [
          {"210": "immerso"},
          {"210": "cestello su"},
          {"30": "immerso"}
        ]
      ]
    }
  }
}
I've fetched it and saved in a variable:
export class DatiService {
  fileJson: JSON;
  constructor() { }
  private datiUrl = 'https://api.myjson.com/bins/zbfh5';
  async getDati(){
    await fetch(this.datiUrl)
    .then(res => res.json())
    .then((out) => {
      this.fileJson=out;
    });
    console.log(this.fileJson);
  };
}
How can i print it in the html code? Can i just use de "." to enter in its fields? Or it's more complicated?

