I get TypeError: Cannot read properties of undefined (reading 'latestDocDate')
with this:
if (this.state.latestDocDate === undefined || this.props.docRow[0].docDate > this.state.latestDocDate) {
There is a possibility this.state.latestDocDate
could be undefined but I thought this.state.latestDocDate === undefined
might cater for that. How do I resolve this?