Skip to content
Advertisement

Sort array by keys in custom order

I have the following multidimensional array

JavaScript

I need to sort each of the inner arrays by their key so they are in the order LOW, MEDIUM, HIGH (the first is correct by chance).

I tried the following code which I took and adjusted from here:

JavaScript

but this orders them as HIGH, MEDIUM, LOW (ascending alphabetical). It does not matter if I change the order in the cmp function they are always sorted this way. I don’t think I’m understanding this uksort or cmp function correctly. Any help will be great!

Thanks

Advertisement

Answer

You could use the following comparison function:

JavaScript

Example of this code is here.

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