Как отсортировать массив объектов в TypeScript?
В частности, сортируйте объекты массива по одному конкретному атрибуту, в этом случае nome
("name") или cognome
("surname")?
/* Object Class*/
export class Test{
nome:String;
cognome:String;
}
/* Generic Component.ts*/
tests:Test[];
test1:Test;
test2:Test;
this.test1.nome='Andrea';
this.test2.nome='Marizo';
this.test1.cognome='Rossi';
this.test2.cognome='Verdi';
this.tests.push(this.test2);
this.tests.push(this.test1);
спасибо!