Skip to content

Instantly share code, notes, and snippets.

@airtonGit
Created May 15, 2019 13:27
Show Gist options
  • Save airtonGit/52f3982f64bbcc46d00dfcee9be4d818 to your computer and use it in GitHub Desktop.
Save airtonGit/52f3982f64bbcc46d00dfcee9be4d818 to your computer and use it in GitHub Desktop.
Javascript Sort Descrescente
//Array de exemplo desordenado
let listValuesArray = [2010,2009,2015,2011,2019]
//Array chama metodo sort com função para ordenar
listValuesArray.sort( (a, b) => {
if (a > b){
return -1
}else if(a < b){
return 1
}else{
return 0
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment