Natural sort of alphanumerical strings in JavaScript (excluding hexadecimal)
I'm looking for an efficient way to sort a list of Alphanumeric labels but ignoring to sort the hexadecimal values like below. arr = [ "a_19", "a_2", "b_645500", "b_6d4500" ] I've read the solution here Using { numeric: true }…