gpt4 book ai didi

javascript - 你如何使用 Ramda 对单词数组进行排序?

转载 作者:行者123 更新时间:2023-11-30 06:58:59 26 4
gpt4 key购买 nike

使用 Ramda 对数字进行排序很容易。

const sizes = ["18", "20", "16", "14"]
console.log("Sorted sizes", R.sort((a, b) => a - b, sizes))
//=> [ '14', '16', '18', '20' ]

使用 vanilla javascript 对单词数组进行排序也是如此。

const trees = ["cedar", "elm", "willow", "beech"]
console.log("Sorted trees", trees.sort())

您将如何使用 Ramda 对单词数组进行排序。
如果必须的话。

const trees = ["cedar", "elm", "willow", "beech"]
console.log("Sorted trees", R.sort((a, b) => a - b, trees))
//=> ["cedar", "elm", "willow", "beech"]

最佳答案

不要尝试减去 字符串 - 而是使用 localeCompare 检查一个字符串是否按字母顺序排在另一个字符串之前:

const trees = ["cedar", "elm", "willow", "beech"]
console.log("Sorted trees", R.sort((a, b) => a.localeCompare(b), trees))
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.25.0/ramda.js"></script>

关于javascript - 你如何使用 Ramda 对单词数组进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52581365/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com