30
जावास्क्रिप्ट निजी तरीके
एक सार्वजनिक विधि के साथ एक जावास्क्रिप्ट वर्ग बनाने के लिए मैं कुछ ऐसा करूंगा: function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here } Restaurant.prototype.use_restroom = function(){ // something here } इस तरह मेरी कक्षा के उपयोगकर्ता कर सकते हैं: var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); मैं एक …