scrimba
Note at 0:44
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:44
AboutCommentsNotes
Note at 0:44
Expand for more info
main.js
run
preview
console
const sortByLength = (strs) => {
const compare = (a, b) => {
return a.length < b.length ? -1 : 1
}
return strs.sort(compare)
}

/**
* Test Suite
*/
describe('sortByLength()', () => {
it('sorts the strings from shortest to longest', () => {
// arrange
const strs = ["abc", "", "aaa", "a", "zz"];

// act
const result = sortByLength(strs);

// log
console.log("result: ", result);

// assert
expect(result).toEqual(["", "a", "zz", "abc", "aaa"]);
});
});
Console
"result: "
,
[
""
,
"a"
,
"zz"
,
"abc"
,
"aaa"
]
,
/index.html
LIVE