function getMaxNum(nums){ nums.sort((a,b)=>{ return parseInt(a+''+b)-parseInt(b+''+a) }) return nums.join() } console.log(getMaxNum([95,34,3]))