+ 1
Alphabetical list
How can I alphabetically arrange a list of names?
4 Antworten
+ 5
Use JS
var arr=["d","a","c","b"]
arr.sort()
document.write(arr)
+ 2
Thanks for the quick answer! I will try this!
+ 1
Not working... Only ad a, b, c... in front of the names... What I want is to sort the names alphabetically...
+ 1
So, I have a list of names that I need to display them alphabetically...