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 |
Tags
- 오라클
- 설치
- kotlin #return #jump
- Event
- String
- 데이터베이스
- 파일 입출력
- JavaScript
- function
- Java
- javaservlet
- property
- 연산자
- jsp
- list
- 자바
- html
- array
- 다형성
- 윈도우 #단축키
- 코틀린#클래스#상속
- Method
- jQuery
- springframework
- GUI
- spring
- 상속
- 연락처 프로그램
- css
- File 클래스
Archives
- Today
- Total
목록Prototype (1)
Binary World
자바스크립트 프로토타입(Prototype)
- 생성자 함수의 프로토 타입을 변경할 수 있음 12345678910111213141516171819202122232425262728293031323334353637JavaScript생성자 함수 prototype 변경 var output = document.getElementById('output'); // 생성자 함수function Unit(name, money){ this.name = name; this.money = money;} // 생성자 함수의 proto type을 변경:Unit.prototype.gas = 0;Unit.prototype.attack = function() { output.innerHTML += this.name + '가 공격합니다!!'}; var unit1 = new Unit..
개발자의 길/Javascript
2017. 4. 6. 11:21