gpt4 book ai didi

javascript - 获得最大(或最高)的字母

转载 作者:行者123 更新时间:2023-11-30 12:42:44 25 4
gpt4 key购买 nike

如果我们想获得最大值或最小值,我们使用 Math.maxMath.min 。我想知道是否有办法获得最高字母。

例如;

var i = 'A';
var ii = 'B';
var iii = 'C';

result = getthemax(i , ii, iii);
// so result equels to 'C'

我搜索了很多,但找不到这样的东西。有什么办法吗?

最佳答案

您可以简单地将它们放在一个数组中,然后使用 Array.sort()然后 .pop()数组中的最后一项:

var i = 'A';
var ii = 'B';
var iii = 'C';

var highestLetter = [i, ii, iii].sort().pop(); //will now be "C".

执行此操作的函数是:

function getthemax() {
return Array.prototype.pop.call(Array.prototype.sort.call(arguments));
}
getthemax(i, ii, iii); //"C"

关于javascript - 获得最大(或最高)的字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23847327/

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