getPrototypeOf() পদ্ধতিটি ব্যবহারকারীর তৈরি বস্তুর প্রোটোটাইপ পরীক্ষা করার জন্য ব্যবহার করা হয় এবং প্রদত্ত দুটি বস্তুর একই প্রোটোটাইপ আছে কি না তা তুলনা করার জন্য প্রায়ই ব্যবহার করা হয়।
getPrototypeOf() ফাংশন −
-এর কোড নিচে দেওয়া হলউদাহরণ
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample { font-size: 18px; font-weight: 500; } </style> </head> <body> <h1>JavaScript getPrototypeOf()</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to get the prototype of object test </h3> <script> let sampleEle = document.querySelector(".sample"); function fun(name, age) { this.name = name; this.age = age; } document.querySelector(".Btn").addEventListener("click", () => { let test = new fun("Rohan", 22); sampleEle.innerHTML = "The prototype for test object is = " + Object.getPrototypeOf(test); }); </script> </body> </html>
আউটপুট
"এখানে ক্লিক করুন" বোতামে ক্লিক করলে -