JavaScript 中的扩展运算符 (...) 是什么?

javascriptweb developmentfront end technology

使用扩展运算符,允许表达式扩展为多个参数、元素、变量等。

示例

您可以尝试运行以下代码来了解如何使用扩展运算符 −

<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>

相关文章