반응형 자바스크립트 프로토타입1 Javascript prototype 프로토타입 이란? prototype을 사용하는 방법을 알아보자. Javascript prototype 프로토타입 이란? prototype을 사용하는 방법을 알아보자. 자바스크립트의 모든 객체들은 부모 역할을 하는 객체와 연결 되어 있습니다. (최상위는 Object) 이런 부모 역할을 하는 객체를 javascript에서는 Prototype이라고 합니다. 예제를 보면서 Prototype에 대해 더 알아보도록 하겠습니다. $(function(){ const Student = function(name, korean, english, math){ this.name = name; this.korean = korean; this.english = english; this.math = math; } console.dir(Student); }); Student라는 생성자 함수를 만들.. Programing/JavaScript 2017. 5. 30. 이전 1 다음 💲 추천 글 반응형