Notice
Recent Posts
Recent Comments
개발일지
Object, Instance, Property, function 본문
- Built-in Object -> Function, Object, Array..
- Object -> Built-in Object로 생성한 오브젝트, function book(){코드}, [1,2],{key, value}
- Instance -> new 연산자로 생성한 오브젝트, new Book();
- property key 와 name 의 차이 -> property name: String / property key: String 과 Symbol (ES6 부터 구분해야 함)
- 함수, 메소드 구분 -> ES6: function, method, static method ex) Array.isArray(), Array.prototype.forEach()
'javascript' 카테고리의 다른 글
[javascript] async/await (1) (0) | 2021.12.29 |
---|---|
[javascript] Promise(2) - all(), race() (0) | 2021.12.29 |
[javascript] Promise(1) - then(), catch(), finally(), resolve(), reject() (0) | 2021.12.29 |
변수 구분 , use strict (0) | 2021.07.27 |
[Javascript]promise (0) | 2021.07.06 |