我这样写我的函数: truncate('Hello world!, 5);
但我想这样写我的函数: 'Hello world!'.truncate(5);
function truncate(str, num) {
if (str.length <= num) {
return str
}
return str.slice(0, num) + '...'
console.log(truncate('Hello world!', 5))
慕慕森
相关分类