जावास्क्रिप्ट में किसी ऑब्जेक्ट को एक पैरामीटर के रूप में पास करने के लिए, इस और प्रोटोटाइप का उपयोग करें। किसी ऑब्जेक्ट को पास करने का तरीका जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<html> <head> <script> var func = function(param1) { this.param1 = param1; }; func.prototype.display = function() { return this.param1; }; function display(val) { document.write(val()); } var res = new func(99); display(res.display.bind(res)); </script> </head> </html>