typescript sort number array descending

Solutions on MaxInterview for typescript sort number array descending by the best coders in the world

showing results for - "typescript sort number array descending"
Cristóbal
28 Feb 2017
1values.sort((one, two) => (one > two ? -1 : 1));