개발일지

Object, Instance, Property, function 본문

javascript

Object, Instance, Property, function

강강강 2021. 7. 27. 22:03
  • 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()