实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
    <title>Array Type Concat Example</title>
5
    <script type="text/javascript">
6
    
7
        var colors = ["red", "green", "blue"];
8
        var colors2 = colors.concat("yellow", ["black", "brown"]);
9
        
10
        alert(colors);     //red,green,blue        
11
        alert(colors2);    //red,green,blue,yellow,black,brown
12
13
    </script>
14
</head>
15
<body>
16
17
</body>
18
</html>