কম্পিউটার

জাভাস্ক্রিপ্ট অবজেক্ট বৈশিষ্ট্য


জাভাস্ক্রিপ্টের বৈশিষ্ট্য হল একটি বস্তুর সাথে যুক্ত মান। নিচে জাভাস্ক্রিপ্ট -

-এ অবজেক্টের বৈশিষ্ট্য বাস্তবায়নের কোড দেওয়া হল

উদাহরণ

<!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;
      color: red;
   }
</style>
</head>
<body>
<h1>JavaScript Object Properties</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to display name and age property from testObj
object
</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   document.querySelector(".Btn").addEventListener("click", () => {
      let testObj = { name: "Rohan",age: 23,};
      sampleEle.innerHTML += "testObj.name = " + testObj.name + "<br>";
      sampleEle.innerHTML += "testObj.age = " + testObj.age + "<br>";
   });
</script>
</body>
</html>

আউটপুট

জাভাস্ক্রিপ্ট অবজেক্ট বৈশিষ্ট্য

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

জাভাস্ক্রিপ্ট অবজেক্ট বৈশিষ্ট্য


  1. জাভাস্ক্রিপ্টে শেয়ার করা বৈশিষ্ট্য

  2. জাভাস্ক্রিপ্টে RegExp অবজেক্ট।

  3. জাভাস্ক্রিপ্টে অবজেক্ট ইনিশিয়ালাইজার

  4. অ্যারের বৈশিষ্ট্যের দৈর্ঘ্য অনুসারে জাভাস্ক্রিপ্ট অবজেক্ট বাছাই করা।