আমাদের একটি ফাংশন লিখতে হবে, যা কিছু সহজ কাজ করে, বলুন দুটি সংখ্যা যোগ করা বা এরকম কিছু। অন্য কোন ফাংশনে বা বিশ্বব্যাপী আমরা সেই ফাংশনের ভিতরে ঘোষিত ভেরিয়েবলগুলিকে কীভাবে অ্যাক্সেস করতে পারি তা আমাদের প্রদর্শন করতে হবে৷
উদাহরণ
নিম্নলিখিত কোড -
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