-
-
Save arensade/41cc6853d604e152250a0b64e3185747 to your computer and use it in GitHub Desktop.
Javascript object array Turkish sorting. Türkçe Sıralama
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 arr = [{id:3,title:"Ali"},{id:3,title:"Veli"},{id:3,title:"Vehbi"}]; | |
arr.sort(turkcesiralama); | |
function turkcesiralama(a, b,aProp="title",bProp="title"){ | |
var atitle = a[aProp]; | |
var btitle = b[bProp]; | |
var alfabe = "AaBbCcÇçDdEeFfGgĞğHhIıİiJjKkLlMmNnOoÖöPpQqRrSsŞşTtUuÜüVvWwXxYyZz0123456789"; | |
if (atitle.length === 0 || btitle.length === 0) { | |
return atitle.length - btitle.length; | |
} | |
for(var i=0;i<atitle.length && i<btitle.length;i++){ | |
var ai = alfabe.indexOf(atitle[i]); | |
var bi = alfabe.indexOf(btitle[i]); | |
if (ai !== bi) { | |
return ai - bi; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment