2025-3-4-javaScript-变量


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        //  变量提升,会将变量声明提前,赋值不变,打印出来undefined
        console.log(a);
        // var-声明 a-变量名 10-值
        var a = 10;
        // 打印出来10
        console.log(a);
    </script>
</body>
</html>
posted @ 2025-03-04 21:50  liu某人  阅读(18)  评论(0)    收藏  举报