I get this code from a basic javascript lesson on Codewar, but I don't understand how it work, I tried one by one condition but it doesn't show output as I expected. Thank you so much.
var arr=[1,2,3,4,5,6,100,999]
arr.sort((a,b)=>{
if (a%2==b%2) return a-b;
if (a%2>b%2) return -1;
return 1;
})
console.log(arr)
//output: [ 1, 3, 5, 999, 2, 4, 6, 100 ]