data = ["zzz", "aaa", "aza", "zaa"]; filteredData = data.sort((a, b) => a > b ? 1 : -1); // console.log("filteredData", filteredData)