从 JavaScript 中的字符串中移除前 k 个字符
我们需要编写一个 JavaScript 函数,它接受一个字符串和一个数字(例如 k),并返回另一个字符串,其中已删除了字符串中的前 k 个字符。
例如:如果原始字符串是 −
const str = "this is a string"
并且
n = 4
那么输出应该是 −
const output = " is a string"
示例
代码如下 −
const str = 'this is a string'; const removeN = (str, num) => { const { length } = str; if(num > length){ return str; }; const newStr = str.substr(num, length - num); return newStr; }; console.log(removeN(str, 3));
输出
在控制台的输出 −
s is a string
广告