Blogger Information
Blog 13
fans 0
comment 0
visits 6813
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js常量、变量、标识符命名规范
云中
Original
1064 people have browsed it

js常量、变量、标识符命名规范

  1. // 变量声明
  2. let a;
  3. let b;
  4. // 函数声明
  5. function sum(a, b) {
  6. return a + b;
  7. }
  8. console.log(sum(1, 1));
  9. // 声明常量 常量值不能改变
  10. const pi = 3.14;
  11. function areaOfACircle(r) {
  12. return pi * r * r;
  13. }
  14. console.log(areaOfACircle(2));
  15. // ! 标识符命名规范
  16. /**
  17. * * 标识符: 代码中有意义的符号, 例如: 变量, 函数等
  18. * * 标识符有二类:
  19. * * 系统标识符: 关键字, 保留字, 是JS提供给开发者, 直接拿来用,不需要声明
  20. * * 自定义标识符: 必须 "先声明, 再使用", 例如 email, password, get...
  21. * * 标识符可使用的字符:
  22. * * 必须是: 字母,数字, 下划线"_", "$"(四种),其它字符均是非法符号
  23. * * 首字母不得使用"数字"
  24. * * 标识符命名规范:
  25. * * 驼峰式: 第二个单词首字母大写, 第一个单词首字母是否大小取决于用途,例如构造函数/类的首字母要大写
  26. * * 蛇形式: 每个单词之间使用"下划线"分割
  27. */
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