30
JavaScript özel yöntemleri
Genel yöntemle bir JavaScript sınıfı yapmak için şöyle bir şey yaparım: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } Bu şekilde sınıfımın kullanıcıları: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); Sınıf yöntemleri tarafından harici olarak değil , buy_foodve use_restroomyöntemleri tarafından çağrılabilen …