new 연산자와 함께 호출해서 String 인스턴스 생성
내부 슬롯에 값을 할당하여 String 래퍼 객체 생성
32-01
const strObj = new String();
console.log(strObj);

32-02
const strObj = new String('Lee');
console.log(strObj);

⇒ 유사배열객체임
32-04
strObj[0] = 'S';
console.log(strObj); // 'Lee'
32-05
let strObj = new String(123);
console.log(strObj);
