[Node] TypeError: value.replaceAll is not a function
[Node] TypeError: value.replaceAll is not a function 최신 자바스크립트 문법으로 String.prototype.replaceAll()가 추가되었다. 즉, replace 에서 정규식으로 모두 변경해주던 것을 이제 replaceAll 함수를 사용하면 된다는 것이다. 그러나 node로 replaceAll을 실행하니 아래와 같은 에러가 표시되었다. TypeError: value.replaceAll is not a function 무슨 소리인가... 새로 추가되었는데 없다니. 해결방법을 알아보자. 해결 방법 replaceAll 함수가 있는 것은 확실하니 이제 node를 의심할 차례이다. node version을 update 시켜주니 잘 된다. 기존 node version ..