30
Métodos privados de JavaScript
Para hacer una clase de JavaScript con un método público, haría algo como: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } De esa forma, los usuarios de mi clase pueden: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); ¿Cómo creo un método …