이 게시물의 모든 코드는 repo Github에서 확인하실 수 있습니다.
/** * @param {number} count * @return {string} */ String.prototype.myRepeat = function (count) { if (count < 0) { throw new RangeError("count must be non-negative"); } if (count === 0) { return ""; } return Array.from({ length: Math.round(count) + 1 }).join(this); }; // Usage example console.log("abc".repeat(0)); // => "" console.log("abc".repeat(1)); // => "abc" console.log("abc".repeat(2)); // => "abcabc" console.log("abc".repeat(-1)); // => RangeError
/** * @param {strint} str * @return {string} */ String.prototype.myTrim = function () { return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ""); }; // Usage example const str = " Hello, World! "; console.log(str.trim()); // => "Hello, World!"
위 내용은 문자열 프로토타입 - JavaScript 과제의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!