반응형
250x250
Notice
Recent Posts
Recent Comments
Link
728x90
반응형
목록 자바스크립트 프로토타입 (1)
728x90
반응형
이롭게 현명하게
[JavaScript] 자바스크립트 프로토타입과 클래스
목차 프로토타입과 클래스 객체 생성자 객체 생성자 상속하기 ES6 Class [객체 생성자] 객체 생성자는 함수를 통해서 새로운 객체를 만들고 그 안에 넣고 싶은 값, 또는 함수를 구현할 수 있게 해 준다. 새로운 객체를 만들 때는 new라는 키워드를 사용한다. function Animal(type, name,sound){ this.type = type; this.name = name; this.sound = sound; this.say = function(){ console.log(this.sound); } } const dog = new Animal('개','멍멍이','멍멍'); const cat = new Animal('고양이','야옹이','야옹'); dog.say(); cat.say(); dog와..
웹 개발/JavaScript
2023. 5. 16. 18:08