I found this way of ordering numbers in descending order but I don't understand why there is a blank space right here next to n. ('' + n)
function descendingOrder(n){ return +('' + n).split('').sort().reverse().join(''); }