學習 JavaScript 中的字串 slice() 方法

從字串中的特定位置 beginend 之間的部分回傳一個新的字串。

原始字串不會被改變。

end 是可選的。

'This is my car'.slice(5) // is my car
'This is my car'.slice(5, 10) // is my

如果第一個參數設定為負數,起始索引將從結尾開始,第二個參數必須也是負數,始終從結尾計算:

'This is my car'.slice(-6) // my car
'This is my car'.slice(-6, -4) // my