เครื่องหมายจุดและเครื่องหมายวงเล็บใช้เพื่อเข้าถึงคุณสมบัติของวัตถุใน JavaScript เครื่องหมายจุดส่วนใหญ่จะใช้เนื่องจากง่ายต่อการอ่านและทำความเข้าใจ และใช้รายละเอียดน้อยลงด้วย ความแตกต่างหลัก ระหว่างเครื่องหมายจุดและเครื่องหมายวงเล็บคือ เครื่องหมายวงเล็บช่วยให้เราเข้าถึงคุณสมบัติของวัตถุโดยใช้ตัวแปรได้
ต่อไปนี้เป็นรหัสสำหรับเครื่องหมายวงเล็บและเครื่องหมายจุดใน JavaScript -
ตัวอย่าง
<!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>Dot notation vs Bracket notation in JavaScript</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to access the student1 object properties using dot and bracket notation</h3>
<script>
let resEle = document.querySelector(".result");
let BtnEle = document.querySelector(".Btn");
function Student(name, age, standard) {
this.name = name;
this.age = age;
this.standard = standard;
}
let student1 = new Student("Rohan", 18, 12);
BtnEle.addEventListener("click", () => {
let str = "name",
str1 = "age",
str2 = "standard";
resEle.innerHTML ="Using dot notation <br>student1.name = " + student1.name + "<br>";
resEle.innerHTML += "student1.age = " + student1.age + "<br>";
resEle.innerHTML +=
"student1.standard = " + student1.standard + "<br><br>";
resEle.innerHTML +=" Using bracket notation <br>student1[str] = " +
student1[str] +"<br>";
resEle.innerHTML += "student1[str1] = " + student1[str1] + "<br>";
resEle.innerHTML += "student1[str2] = " + student1[str2] + "<br>";
});
</script>
</body>
</html> ผลลัพธ์

เมื่อคลิกปุ่ม 'คลิกที่นี่' -
