📌  相关文章
📜  js 从字符串中删除第一个字符 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:29.355000             🧑  作者: Mango

代码示例6
// Return a word without the first character
function newWord(str) {
    return str.replace(str[0],"");
    // or: return str.slice(1);
    // or: return str.substring(1);
}

console.log(newWord("apple"));    // "pple"   
console.log(newWord("cherry"));    // "herry"