Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created September 1, 2019 04:14
Show Gist options
  • Save heinthanth/874fe617750f5e836c50745e262e24c8 to your computer and use it in GitHub Desktop.
Save heinthanth/874fe617750f5e836c50745e262e24c8 to your computer and use it in GitHub Desktop.
Sort Burmese String
var x = ["ညီမလေး", "မေမေ", "ဖေဖေ", "ကိုကို"];
x = x.sort();
// now x become ["ကိုကို", "ညီမလေး", "ဖေဖေ", "မေမေ"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment