我想写一个简单的单行方法,叫做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);
}