// Sort by length of the string, then alphabetical order from(['two', 'one', 'thirteen', 'five']).orderBy(x=>x.length).thenBy(x=>x) // => ['one', 'two', 'five', 'thirteen']
// Sort by length of the string, then reverse alphabetical order from(['one', 'two', 'thirteen', 'five']).orderBy(x=>x.length).thenByDescending(x=>x) // => ['two', 'one', 'five', 'thirteen']
Order the sequence by another key, ascending.