Created
September 1, 2019 04:14
-
-
Save heinthanth/874fe617750f5e836c50745e262e24c8 to your computer and use it in GitHub Desktop.
Sort Burmese String
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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