String은 값을 변경할 수 없다!
문자열.replace()를 사용하는 것만으로는 해당 문자열 값을 변경할 수 없다. 따라서 name이라는 문자열이 담긴 변수 내의 특정 값을 변경하고 싶다면
(이미 name을 선언했다고 가정)
name = name.replace('Bob', 'Carol');
이런 식으로 새로 만든 문자열을 대입해야 된다.
내가 제대로 이해했는지는 모르겠지만, 지금은 다음과 같이 이해했다.
replace()는 기존 문자열에서 일부 내용을 교체한 값을 가진 새 문자열을 만든다.
기존 문자열이 담긴 변수 값을 바꾸고 싶다면, (문자열을 수정할 수 없으니) 새 문자열을 대입한다.
MDN을 찾아 보니 이런 설명이 있다.
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement.
바꾸고 싶은 문자열이 2개 이상 있고 같은 문자열을 한 번에 싹 바꾸고 싶다면 다음과 같이 g가 포함된 정규식을 쓰면 된다. 그냥 replace()를 한 번만 쓰면 첫 번째 문자열만 바뀐다.
MDN에는 이렇게 적혀 있다.
There are three instances of strings that
need to be replaced. You may repeat the replace() method multiple times, or you can use regular expressions. For instance,
let text = 'I am the biggest lover, I love my love'; text.replace(/love/g,'like');
will replace all instances of 'love' to 'like'. Remember, Strings are immutable!