javascript sort data with same value code example
Example 1: javascript sort function
var points = [40, 100, 1, 5, 25, 10];
points.sort((a,b) => a-b)
Example 2: sort function in react js
this.state.data.sort((a, b) => a.timeM > b.timeM ? 1:-1).map(
(item, i) => <div key={i}> {item.matchID} {item.timeM} {item.description}</div>
)