Am displaying array of dates. I have to pick latest date out of date array. Please suggest how i can get the latest date.
class SearchResultsItem extends React.Component {
    render() {
        return (
            <tr onClick={ this.handleOpen } style={{fontsize: '10',cursor: 'pointer'}}>
                <td>{ this.props.item.number }</td>
                <td>{ this.props.item.name }</td>
                <td>{ this.props.item.buyer_name }</td>
                <td>{ this.props.item.order_date ? <Moment format="DD-MMM-YYYY">{ this.props.item.order_date }</Moment> : null }</td>
                </tr>
                <div className="col-sm-3">
                            <input name="date" disabled={ this.state.mode } type="date" value={ this.state.item.date } className="form-control" onChange={ this.handleInputChange } />
            </div>
        );
    }
 
    