Skip to content
Advertisement

Order array alphanumercially and with a condition

I am trying to reorder an array by two conditions. Making sure that Pos 10 goes after single digits and that it follows a specific order after that.

I tried to give priority to the string that includes first but then if I want to order alphanumerically it resets A to the top. How could I optain the expected result?

JavaScript

Advertisement

Answer

For the second sort use match on numbers within the string value, converted to Number.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement