static methods1 Static Methods, Prototype Methods 정리 생성자함수 Array 입장에서 디렉터리 구조를 살펴보면 스태틱 메서드 from(), isArray(), of() 클래스(생성자함수)에서 직접 정의한 메서드 인스턴스에 상속(참조)되지 않는다. 인스턴스에서 직접 호출할 수 없고 클래스에서만 호출 가능. 프로토타입 메서드 map(), forEach(), pop() ... 클래스의 prototype 내부에 정의된 메서드 인스턴스에 상속(참조)가 가능하다. 인스턴스에서 직접 호출할 수 있다. > 예시 /* 생성자 Constructor */ let Constructor = function(width, height) { this.width = width; this.height = height; }; /* 프로토타입 메서드 */ Constructor.prototype.. 2022. 7. 17. 이전 1 다음