Skip to content
Advertisement

Sorting in Javascript with special characters

I have an array with the following values

JavaScript

and i want to sort it in javascript in the following way in to three parts.

  1. word starting from special character
  2. word starting from digit
  3. word starting from alphabets.

So this should be the sequence of the sorted array.

EDIT: Here’s a function that I’ve been experimenting with:

JavaScript

Advertisement

Answer

To be honest, I have no idea what your posted function does … at all.

The following approach compares strings on their first character, using positional occurrence. Strings with the same first character are sorted regularly.

Btw, didn’t test for empty strings.

JavaScript

Output:

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