32. String
표준 빌트인 객체인 String은 원시 타입인 문자열을 다룰 때 유용한 프로퍼티와 메서드를 제공한다.
32.1 String 생성자 함수
String 생성자 함수에 인수를 전달하지 않고 new 연산자와 함께 호출하면 [[StringData]] 내부 슬롯에 빈 문자열을 할당한 String 래퍼 객체를 생성한다.
크롬 브라우저의 개발자 도구에서 실행해보면 [[PrimitiveValue]]라는 접근할 수 없는 프로퍼티가 보인다. 이는 [[StringData]] 내부 슬롯을 가리킨다. ES5에서는 [[StringData]]를 [[PrimitiveValue]]라 불렀다.
String 래퍼 객체는 배열과 마찬가지로 length 프로퍼티와 인덱스를 나타내는 숫자 형식의 문자열을 프로퍼티 키로, 각 문자를 프로퍼티 값으로 갖는 유사 배열 객체이면서 이터러블이다. 따라서 배열과 유사하게 인덱스를 사용하여 각 문자에 접근할 수 있다.
new 연산자를 사용하지 않고 String 생성자 함수를 호출하면 String 인스턴스가 아닌 문자열을 반환한다.
32.2 length 프로퍼티
32.3 String 메서드
String 객체에는 원본 String 래퍼 객체(String 메서드를 호출한 String 래퍼 객체)를 직접 변경하는 메서드는 존재하지 않는다.
String 객체의 메서드는 언제나 새로운 문자열을 반환한다.
문자열은 변경 불가능_immutable 한 원시 값이기 때문에 String 래퍼 객체도 읽기 전용_read only 객체로 제공된다.
String.prototype.indexOf,
String.prototype.search,
String.prototype.includes,
String.prototype.startsWith,
String.prototype.endsWith,
String.prototype.charAt,
String.prototype.substring,
String.prototype.slice,
String.prototype.toUpperCase,
String.prototype.toLowerCase,
String.prototype.trim,
String.prototype.repeat,
String.prototype.replace,
String.prototype.split,
-알라딘 eBook <모던 자바스크립트 Deep Dive> (이웅모 지음) 중에서