What is the difference between slice() and substr() in JavaScript?

后端 未结 5 1140
轮回少年
轮回少年 2020-12-31 04:34

Can I ask what the difference is between string object slice() and substr() in JavaScript?

5条回答
  •  忘掉有多难
    2020-12-31 05:11

    var str="Hello world!";
    document.write(str.substring(3,7)+"
    "); document.write(str.slice(3,7)+"
    "); document.write(str.substr(3,7));

    result:

    lo w
    lo w
    lo worl
    

提交回复
热议问题