gpt4 book ai didi

javascript - 编写 removeSuffix() 的最佳方法是什么?

转载 作者:行者123 更新时间:2023-11-29 18:19:58 26 4
gpt4 key购买 nike

我想编写一个名为 removeSuffix() 的简单的一行方法。

这是我的选择:

test.slice(0, test.length - len);

test.substring(0, test.length - len);

test.substr(0, test.length - len);

给定这个测试用例,他们都做同样的事情:

len = 1; // length of the suffix to remove

test = "abcd" // test string

当前实现:

function removeSuffix(str, len){
return str.slice(0, str.length - len);
}

最佳答案

负切片呢"abcd".slice(0,-1)

如果你想传递长度让它像

var len = 2;    
"abcde".slice(0,-(len))

关于javascript - 编写 removeSuffix() 的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19683547/

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