const obj = { log: ['a', 'b', 'c'], // 메서드 latest() { if (this.log.length === 0) { return undefined; } return this.log[this.log.length - 1]; } }; console.log(obj.latest()); // c const obj = { log: ['a', 'b', 'c'], // getter get latest() { if (this.log.length === 0) { return undefined; } return this.log[this.log.length - 1]; } }; console.log(obj.latest()); // Uncaught TypeError: obj.latest is not..
Getter and Setter 예시 1 class Member4 { int i; String name; String account; String passwd; private int birthyear; void setBirthyear(int birthyear) { if(birthyear < 0) { return; } this.birthyear = birthyear; } int getBirthyear() { return birthyear; } } 예시 2 public class Time { private int hour; private int minute; private float second; // Getter public int getHour() { return hour; } public int get..
- Total
- Today
- Yesterday
- linkedlist
- this
- rxjs
- oracle
- GIT
- jQuery
- 포인터 변수
- 인스턴스
- 깃
- SQL
- 개발 공부
- Redux
- Session
- Data Structure
- 리덕스
- 제네릭스
- useEffect
- Java
- 알고리즘
- c언어
- CSS
- youtube data api
- til
- react
- getter
- JavaScript
- Conflict
- 자바
- Prefix Sums
- package.json
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |