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

จะใช้ Spread Syntax กับอาร์กิวเมนต์ในฟังก์ชัน JavaScript ได้อย่างไร


ตัวดำเนินการสเปรดจะอนุญาตให้คุณแยกอาร์เรย์ออกเป็นอาร์กิวเมนต์เดี่ยว อาร์กิวเมนต์เหล่านี้เป็นอาร์กิวเมนต์ ซึ่งเป็นหน้าที่ของอาร์กิวเมนต์แยกกัน

ไวยากรณ์

function myfunction(...iterableObj);

ตัวอย่าง

สาธิตสด

<html>
   <body>
      <script>
         var a, b, c, d, e, f, g;
         a = [10,20];
         b = "rank";
         c = [30, "points"];
         d = "run"

         // concat method.
         e = a.concat(b, c, d);

         // spread operator
         f = [...a, b, ...c, d];
         document.write(e);
         document.write("<br>"+f);
      </script>
   </body>
</html>