gpt4 book ai didi

javascript - 返回一串带空格的数字中的最高和最低数字

转载 作者:行者123 更新时间:2023-12-03 07:17:55 24 4
gpt4 key购买 nike

假设我有一串由空格分隔的数字,我想返回最高和最低的数字。如何最好地使用函数在 JS 中完成?示例:

highestAndLowest("1 2 3 4 5"); // return "5 1"

我希望这两个数字都以字符串的形式返回。最小数字先跟一个空格,然后是最大数字。

这是我目前所拥有的:

function myFunction(str) {
var tst = str.split(" ");
return tst.max();
}

最佳答案

您可以使用 Math.min 和 Math.max ,并在数组中使用它们返回结果,尝试:

function highestAndLowest(numbers){
numbers = numbers.split(" ");
return Math.max.apply(null, numbers) + " " + Math.min.apply(null, numbers)
}

document.write(highestAndLowest("1 2 3 4 5"))

关于javascript - 返回一串带空格的数字中的最高和最低数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30916837/

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