12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!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>
- /*
- const 和 var的区别
- 1.const 不能重复声明
- 2.不能重复赋值
- 3.没有变量提升
- 4.临时失效区
- 5.const 块级作用域
- */
- // const a = 100
- // a = 200
- // console.log(a)
- // console.log(a)
- // const a = 100
- // const a = 100
- // function fn(){
- // console.log(a)
- // const a = 10
- // }
- // fn()
- var a = true
- if(a){
- const x = 10
- }
- console.log(x)
- </script>
- </body>
- </html>
|