如下圖: 複製程式碼程式碼如下: /* 從String 物件取得指定長度的最右邊的子字串 。 */ String.prototype.right = function (length_) { 🎜> if (_from return this.substring(this.length - length); >