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
- 기초공부
- appendChild
- 메모이제이션
- 개발툴
- AWS
- Big-O notation
- 코드스테이츠
- 원본과 복사본
- node.js
- 재귀함수
- 리커젼
- CSS
- AWS기초
- var
- node.js설치
- let
- flex기본
- prototype
- css기초
- AWS조사
- vscode
- 클로저
- IT
- APPEND
- complexity
- 인터프리터
- JavaScript
- 생활코딩
- 스코프
- scope
Archives
- Today
- Total
목록prototype (1)
Jveloper
Prototype
Array.~~~() : 클래스에서만 작동 // Array.prototype.~~~() : 인스턴스에서만 작동 Array.prototype.~~~() : 인스턴스에서만 작동하는거에 대해 알아보자 ex) 그렇다면 인스턴스란 무엇인가? 'new Array(1,2,3)' 또는 'let array = [1,2,3]' 이것들은 Array.prototype( 원본 ) 이 있기때문에 만들어지는 복사본(즉, 인스턴스)이다 ex) prototype이 붕어빵 틀이라면 new Array(1,2,3) , [1,2,3] 이 녀석들이 계속 복사될수 있는 붕어빵이라고 생각하면 편하다 Array.prototype.join.call([1,2,3], '-'); // "1-2-3" [1,2,3].join('-'); // "1-2-3" /..
JavaScript
2019. 5. 7. 08:25