30
자바 스크립트 개인 메소드
공용 메소드를 사용하여 JavaScript 클래스를 만들려면 다음과 같이하십시오. function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } 그렇게하면 내 수업의 사용자는 다음을 수행 할 수 있습니다. var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); buy_foodand use_restroom메소드 는 호출 할 수 있지만 클래스 사용자는 …