কম্পিউটার

একটি বস্তু জাভাস্ক্রিপ্টে একটি ক্লাসের একটি উদাহরণ কিনা তা কিভাবে পরীক্ষা করবেন?


একটি অবজেক্ট জাভাস্ক্রিপ্ট -

-এ একটি ক্লাসের একটি উদাহরণ কিনা তা পরীক্ষা করার জন্য নিম্নলিখিত কোড রয়েছে

উদাহরণ

<!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;
   }
   .result {
      font-size: 20px;
      font-weight: 500;
      color: blueviolet;
   }
</style>
</head>
<body>
<h1>Check if an object is an instance of a Class</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to check if student1 object is an instance of Student</h3>
<script>
   let resEle = document.querySelector(".result");
   function Student(name, age, standard) {
      this.name = name;
      this.age = age;
      this.standard = standard;
   }
   let student1 = new Student("Rohan", 18, 12);
   document.querySelector(".Btn").addEventListener("click", () => {
      if (student1 instanceof Student) {
         resEle.innerHTML = "student1 is instance of Student";
      } else {
         resEle.innerHTML = "student1 is not an instance of Student";
      }
   });
</script>
</body>
</html>

আউটপুট

একটি বস্তু জাভাস্ক্রিপ্টে একটি ক্লাসের একটি উদাহরণ কিনা তা কিভাবে পরীক্ষা করবেন?

'এখানে ক্লিক করুন' বোতামে ক্লিক করলে -

একটি বস্তু জাভাস্ক্রিপ্টে একটি ক্লাসের একটি উদাহরণ কিনা তা কিভাবে পরীক্ষা করবেন?


  1. জাভাস্ক্রিপ্টে একটি নথি প্রস্তুত কিনা তা কীভাবে পরীক্ষা করবেন?

  2. কিভাবে জাভাস্ক্রিপ্ট অবজেক্টে একটি স্ট্রিং রূপান্তর করবেন?

  3. জাভাস্ক্রিপ্টে একটি আমদানি করা বস্তুকে কীভাবে ডি-স্ট্রাকচার করবেন?

  4. কিভাবে একটি বহুমাত্রিক জাভাস্ক্রিপ্ট অবজেক্ট তৈরি করবেন?