Javascript – How to find property in array of object and stop looping
I have an array of objects const jobs = [ { "id": 1, "title": "Item 1", "Invoice Net": "€120.00", "Invoice VAT": "€0.00", "Invoice Total": "€120.00" }, { "id": 2, "title": "Item 2", }, { "id": 3, "title": "Item 1", "Invoice…