const ascending: any= values.sort((a,b) => (a > b ? 1 : -1)); const descending: any= values.sort((a,b) => (a > b ? -1 : 1))