“Sortieren Sie String Array -Objekt JavaScript” Code-Antworten

Sortieren Sie String Array -Objekt JavaScript

let strArray = [{name: 'c' }, {name: 'a' }, {name: 'd' }, {name: 'b' }];


console.log(strArray.sort((a, b) => a.name.localCompare(b.name)))

// nodejs
console.log(strArray.sort((a, b) => a.name.localeCompare(b.name)))
Restu Wahyu Saputra

Sortieren Sie String Array -Objekt JavaScript

obj.sort(function(a,b){
  if(a.last_nom< b.last_nom) return -1;
  if(a.last_nom >b.last_nom) return 1;
  if(a.first_nom< b.first_nom) return -1;
  if(a.first_nom >b.first_nom) return 1;
  return 0;
});
Restu Wahyu Saputra

Sortieren Sie String Array -Objekt JavaScript

function dynamicSort(property) {
    var sortOrder = 1;
    if(property[0] === "-") {
        sortOrder = -1;
        property = property.substr(1);
    }
    return function (a,b) {
        /* next line works with strings and numbers, 
         * and you may want to customize it to your needs
         */
        var result = (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0;
        return result * sortOrder;
    }
}
Restu Wahyu Saputra

Ähnliche Antworten wie “Sortieren Sie String Array -Objekt JavaScript”

Fragen ähnlich wie “Sortieren Sie String Array -Objekt JavaScript”

Weitere verwandte Antworten zu “Sortieren Sie String Array -Objekt JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen