gpt4 book ai didi

javascript - 在 JavaScript 中按索引大小排序

转载 作者:行者123 更新时间:2023-12-03 00:01:19 25 4
gpt4 key购买 nike

如何根据索引大小对字符串进行排序?

帮忙排序的方法还是没有任何方法?

例如:

Input : sky is blue today
Output: is sky blue today

最佳答案

您想按每个单词的长度排序吗?

var str = "sky is blue today"

console.log(
str.split(" ").sort(function(a, b) { return a.length - b.length; }).join(" ")
)

关于javascript - 在 JavaScript 中按索引大小排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55162631/

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