I have an array like below.
let report = [
{0: { error1: '', error2: ''}},
{1: { error1: '', error2: ''}}
]
I want to check if all the error values are empty. Then based on that result I will enable or disable a button. If all the error values are empty, then the save button will be enabled. How can I achieve that ?
report, haven't found anything useful.