I have an object called newEntries which has 2 entries so far:
(2) [{…}, {…}]
0: {name: "test", website: "", sector: "", house: ""}
1: {name: "", website: "", sector: "", house: ""}
length: 2
__proto__: Array(0)
As it is visible, currently only one field of one index is filled. I need to return true if all the fields for all elements are filled and false otherwise.
How can I do so in javascript?