문자열 관련 방법 봉인

1859 단어 프런트 엔드
            /**
             *  1. 
             *  s1  
             *  s2  
             */
            String.prototype.replaceAll = function (s1, s2) {
                return this.replace(new RegExp(s1, 'gm'), s2)
            }
            let str = 'qweroioioi'
            console.log(str.replaceAll('o', 'i')) // qweriiiiii

좋은 웹페이지 즐겨찾기