हमें एक फ़ंक्शन लिखना है, जो कुछ सरल कार्य करता है, जैसे कि दो संख्याओं को जोड़ना या ऐसा ही कुछ। हमें यह प्रदर्शित करने की आवश्यकता है कि हम किसी अन्य फ़ंक्शन में या विश्व स्तर पर उस फ़ंक्शन के अंदर घोषित चरों तक कैसे पहुंच सकते हैं।
उदाहरण
निम्नलिखित कोड है -
const num = 5; const addRandomToNumber = function(num){ // a random number between [0, 10) const random = Math.floor(Math.random() * 10); // assigning the random to this object of function // so that we can access it outside this.random = random; this.res = num + random; }; const addRandomInstance = new addRandomToNumber(num); const scopedRandom = addRandomInstance.random; const result = addRandomInstance.res; // must be equal to the original value of num i.e., 5 console.log(result - scopedRandom);
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
5