> [2,1,3].sort((a,b) => a < b)
FF:
Array(3) [ 3, 2, 1 ]
[ 2, 1, 3 ]
You can even reduce the reproduction to `[1,2].sort((a,b) => 1)`. Have fun..!