1. Classes are Not hoisted.2. Class are first-class citizens3. Classes are executed in strict mode. = strict mode는 보통 "use strict";라는 선언으로 활성화하지만, 클래스는 선언하지 않아도 자동으로 strict mode를 적용받습니다.class PersonCl { // constructor(생성자)를 꼭 명시적으로 추가하진 않아도 됨! constructor(fullName, birthYear) { this.fullName = fullName; // this.fullName = fullName이 호출될 때 JS의 기본동작 // 1. 현재 세팅하려 하는 프라퍼티 이름에 대응하는 세터(sett..