[JS]강의록-객체지향 프로그래밍(생활코딩) Status: JS 객체란? 서로 연관된 변수와 함수를 그룹핑하고 이름을 붙인 것 method 객체에 소속되어있는 함수를 메소드라고 칭함 constructor new를 붙여서 객체를 생성하는 생성자 함수constructor를 사용하면 좋은 점: 객체를 원하는대로 찍어내고 재생성할 수 있다. constructor가 하는 일 2가지 객체를 만든다 객체의 초기 상태(prototype)를 세팅한다 function Person(name, first, second, third){ this.name=name, this.first=first, this.second=second, this.third=third, this.sum=function(){ return this.fir..