Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- TypeScript
- typeORM
- 자료구조
- Dinosaur
- JavaScript
- jest
- dfs
- AWS
- mongoose
- Nest.js
- cookie
- OCR
- 게임
- game
- flask
- Express
- 공룡게임
- Python
- MySQL
- MongoDB
- react
- Queue
- class
- Sequelize
- GIT
- nestjs
- nodejs
- 정렬
- Bull
Archives
- Today
- Total
목록extends (1)
포시코딩
자식 Class 생성자에서의 super()
사용예제 class User { // User 부모 클래스 constructor(name, age, tech) { // 부모 클래스 생성자 this.name = name; this.age = age; this.tech = tech; } getTech(){ return this.tech; } // 부모 클래스 getTech 메서드 } class Employee extends User{ // Employee 자식 클래스 constructor(name, age, tech) { // 자식 클래스 생성자 super(name, age, tech); } } const employee = new Employee("조성훈", "29", "Node.js"); console.log(employee.name); // 조성훈 ..
JavaScript
2022. 12. 12. 16:11