什么是JavaScript中的传播算子(...)?

使用Spread Operator,允许将表达式扩展为多个参数,元素,变量等。

示例

您可以尝试运行以下代码以了解如何使用传播算子-

<html>
   <body>
      <script>
         var a, b, c,d, e, f, g;  
         a = [10,20];
         b = "rank";
         c = [30,"points"];  
         d = "run"
       
         //concat方法。  
         e = a.concat(b, c, d);  

         //点差运算符  
         f = [...a,b, ...c, d];  
   
         document.write(e);  
         document.write("<br>"+f);
      </script>
   </body>
</html>