46、数组的基本使用

yu
yu
2024-10-04 / 0 评论 / 2 阅读 / 正在检测是否收录...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        // 1、字面量声明数组
        // let arr = [1, 2, 3, 4]
        // 2、使用new Array 构造函数声明   了解
        // let arr = new Array(1,2,3,4)
    </script>
</body>
</html>
0

评论 (0)

取消