Ad

right

function returnAscending(n){
  return +(n+'').split('').sort(function(a,b){return a-b }).join('');
}