Sorting digits of all the number of array - JavaScript


We are required to write a JavaScript function that takes in an array of numbers and reorders the digit of all the numbers internally in a specific order (lets say in ascending order for the sake of this problem).

For example − If the array is −

const arr = [543, 65, 343, 75, 567, 878, 87];

Then the output should be −

const output = [345, 56, 334, 57, 567, 788, 78];

Example

Following is the code −

const arr = [543, 65, 343, 75, 567, 878, 87];
const ascendNumber = num => {
   const numArr = String(num).split('').map(el => +el);
   numArr.sort((a, b) => a - b);
   return numArr.join('');
};
const sortDigits = arr => {
   const res = [];
   for(let i = 0; i < arr.length; i++){
      res.push(ascendNumber(arr[i]));
   };
   return res;
};
console.log(sortDigits(arr));

Output

Following is the output in the console −

[
   '345', '56',
   '334', '57',
   '567', '788',
   '78'
]

Updated on: 18-Sep-2020

500 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements