[1, 2, 4, 3].sort( (a, b) => a<b ? a : b );
[1, 2, 4, 3].sort( function(a, b){ if (a<b) { return a; } else { return b; } );