30
Prywatne metody JavaScript
Aby utworzyć klasę JavaScript metodą publiczną, zrobiłbym coś takiego: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } W ten sposób użytkownicy mojej klasy mogą: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); Jak utworzyć prywatną metodę, która może być wywoływana przez metody …