30
Metodi privati JavaScript
Per creare una classe JavaScript con un metodo pubblico farei qualcosa del tipo: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } In questo modo gli utenti della mia classe possono: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); Come faccio a creare …