Solution #4: Sort Roster
This lesson gives a detailed review of the solution to the challenge in the previous lesson.
We'll cover the following...
We'll cover the following...
Solution
import { AppPage } from './app.po';
describe('new App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
describe('default screen', () => {
beforeEach(() => {
page.navigateTo('/Inbox');
});
it('should say Inbox', () => {
expect(page.getParagraphText()).toContain('Inbox');
});
});
});
Solution: Sort Roster
Explanation
-
TypeScript arrays have a
sortfunction. Provide a button in the Roster toolbar to sort by the students’ last names instead of the current default.