Below is the JSON response I am getting. From this JSON response, I want to get the value of "fees" based on "detailComponent" with "FULL_FEE" only. But, somehow it gets the last value of "detailComponent" with "SUB_FEE" or others which is not correct.
I am sure not how to make this for loop condition to fix my issue. Can help to guide pls?
let data = {
    "status": "SUCCESS",
    "result": {
        "originData": {
            "detailType": "MSG",
            "origin": [
                {
                    "details": [
                        {
                            "detailComponent": "FULL_FEE",
                            "fees": 13564.00
                        },
                        {
                            "detailComponent": "SUB_FEE",
                            "fees": 8207.60
                        }
                    ]
                }
            ]
        }
    }
}
var getData = data.result.originData.origin[0].details[0].detailComponent;
console.log('getData: ', getData); 
    