> [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..!
FF:
Node: (Obviously that's a silly example because you'd just `.sort()`, I think I was doing `a.id < b.id` or something, but it's not a significant detail.)You can even reduce the reproduction to `[1,2].sort((a,b) => 1)`. Have fun..!