I am trying to loop through the nested object below and display the value of each iteration.
const data = {
         "0": {
                "identity": {
                      "personal": {
                             "first_name": "John",
                             "last_name": "Doe",
                       },
                      "identity": "j.doe@gmail.com",
              },
        },
        "1": {
                "identity": {
                      "personal": {
                             "first_name": "Andrea",
                             "last_name": "Watson",
                       },
                      "identity": "a.watson@outlook.com",
              },
        },
I have a background with python so es6 and javascript is not really my strength.
Thanks!
