其他分享
首页 > 其他分享> > js去掉字符串中最后一个指定的字符

js去掉字符串中最后一个指定的字符

作者:互联网

let str = " zifu    chuan "

function func(str, target)
{
    let arr = str.split('')

    arr.map(function(item, index){

        if(item === target){
            arr.splice(index, 1)

        }
    })
    return arr.join('')
}

console.log(func(str, 'n'))

标签:function,index,arr,str,js,let,func,字符串,去掉
来源: https://www.cnblogs.com/zxcv123/p/16068829.html