[JS] class 선언문 - 이론
문법 class ClassName{ constructor(){ ... } method1(){ ... } method2(){ ... } method3(){ ... } } let test = new ClassName(); - class 선언을 통해서 class를 만든다. - new와 함께 className()을 호출하지 않으면 에러가 발생한다. - class는 함수다. - 객체의 기본 상태를 설정해주는 constructor()는 new에 의해 자동으로 호출되므로, 특별한 절차 없이 객체를 초기화 할 수 있다. - class가 호출되면, 내부에서 정의한 메서드가 들어 있는 객체가 생성된다. - method 사이에 쉼표를 사용하지 않는다. [예시] class User { constructor(name) { th..
이론/JS
2021. 2. 12. 02:53
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- javascript class
- clinetTop
- clientHeight
- 불일치 연산자
- 일치 연산자
- 링크막기 #a링크막기
- 프로퍼티
- innerHeight
- [[Prototype]]
- 객체의 프로퍼티
- 부등 연산자
- __proto__
- 동치 연산자
- 동등 연산자
- outerHeight
- scrollTop
- property
- offsetHeight
- 점 표기법
- scrollHeight
- 대괄포 표기법
- prototype 프로퍼티
- @font-face
- offsetTop
- constructor
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함