const thaiWords = ["สวัสดี", "ขอบคุณครับ", "ลาก่อนนะ"]; thaiWords.sort((a, b) => a.localeCompare(b)) // => ['ขอบคุณครับ', 'ลาก่อนนะ', 'สวัสดี']