I want to have the max date from the list of dates given in the handleClick function. How to find the max date from the list of dates using moment.j
You can use moment.max function :
let moments = this.state.dates.map(d => moment(d)), maxDate = moment.max(moments)