How to get the name of the object which has blank value. In below case should get name 'end'.
filterAry = [{name: 'start', value: '25/10/2021'},{name: 'end', value: ''}]
I tried below approach but not getting desired result
const doEmptyAction = filterAry.every(o => o.value === '')
Please help how to achieve this.