30
Private JavaScript-Methoden
Um eine JavaScript-Klasse mit einer öffentlichen Methode zu erstellen, würde ich Folgendes tun: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } Auf diese Weise können Benutzer meiner Klasse: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); Wie erstelle ich eine private Methode, …