[JavaScript] Class
·
개발/html, css, js
1. class 자바스크립트는 프로토타입 기반 객체지향 언어이다. class는 0개 이상의 메서드만(생성자, 프로토타입 메서드, 정적메서드) 정의할 수 있다. class CStudent{ //생성자 constructor(age, phone, city){ this.age = age; this.phone = phone; this.city = city; } getInfo(){ return "나이는 : " + this.age + "살, " + "핸드폰 번호는 " + this.phone + "사는곳은 : " + this.city + "입니다." } } let st = new CStudent(10,10,"서울시 강남구") console.log(st);//CStudent {10,10,"서울시 강남구"} console..