Blogger Information
Blog 27
fans 1
comment 2
visits 90424
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS申明变量
          
Original
447 people have browsed it
  1. /*
  2. 作业内容:
  3. 1. 实例演示JS中变量常量与函数的声明与使用过程
  4. 2. (选做), 为什么不推荐用var,实例演示var的三大缺陷
  5. */
  6. // JS声明变量
  7. let a = 100; // 声明变量a
  8. // 过程
  9. // 1. let a 申明变量a
  10. // 2. 把100 给变量a
  11. // 打印变量a
  12. console.log('变量a的值是:' +a)
  13. // var申明变量是全局的,没有命名空间
  14. // var 三大硬伤
  15. // 1. 声明提升: 未声明可使用
  16. // 2. 重复声明: 声明式更新很奇葩
  17. // 3. 变量泄露: 不支持代码块
  18. // 函数内部变量 外部不可以调用,但是var 可以,所以不建议用var,var申明的变量优先级过高。
  19. {
  20. var a1 =333
  21. }
  22. console.log('函数a1变量泄露:'+a1)

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!