30
Méthodes privées JavaScript
Pour créer une classe JavaScript avec une méthode publique, je ferais quelque chose comme: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } De cette façon, les utilisateurs de ma classe peuvent: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); Comment créer une …