Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ตัวดำเนินการกระจายสำหรับอาร์เรย์ใน JavaScript


ไวยากรณ์การแพร่กระจาย (…) ทำให้เราสามารถขยาย iterable เช่นอาร์เรย์ในตำแหน่งที่คาดว่าจะมีอาร์กิวเมนต์ 0+ ช่วยให้เราสามารถส่งผ่านพารามิเตอร์จำนวนหนึ่งเป็นอาร์เรย์ไปยังฟังก์ชันได้

ต่อไปนี้เป็นรหัสที่จะใช้ตัวดำเนินการการแพร่กระจายสำหรับอาร์เรย์ใน 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,
   .sample {
      font-size: 20px;
      font-weight: 500;
      color: blueviolet;
   }
   .sample {
      color: red;
}
</style>
</head>
<body>
<h1>Spread operator for arrays JavaScript</h1>
<div class="sample">[22,55,11,19,55]</div>
<div class="result"></div>
<br />
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to call the add function and pass the above
array as parameter</h3>
<script>
   let BtnEle = document.querySelector(".Btn");
   let resEle = document.querySelector(".result");
   function add(num1, num2, num3, num4, num5) {
      return num1 + num2 + num3 + num4 + num5;
   }
   let arr = [22, 55, 11, 19, 55];
   BtnEle.addEventListener("click", (event) => {
      resEle.innerHTML = "The sum of the above array = " + add(...arr);
   });
</script>
</body>
</html>

ผลลัพธ์

ตัวดำเนินการกระจายสำหรับอาร์เรย์ใน JavaScript

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

ตัวดำเนินการกระจายสำหรับอาร์เรย์ใน JavaScript