Blogger Information
Blog 11
fans 0
comment 0
visits 5878
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js命名规范/声明变量常量/作用域
becauses
Original
435 people have browsed it

JS命名规范

标识符: 代码中有意义的符号, 例如: 变量, 函数等

标识符有二类:

  • 系统标识符: 关键字, 保留字, 是JS提供给开发者, 直接拿来用,不需要声明
  • 自定义标识符: 必须 “先声明, 再使用”, 例如 email, password, get…

标识符可使用的字符:

  • 必须是: 字母,数字, 下划线”_”, “$”(四种),其它字符均是非法符号
  • 首字母不得使用”数字”

标识符命名规范:

  • 驼峰式: 第二个单词首字母大写, 第一个单词首字母是否大小取决于用途,例如构造函数/类的首字母要大写
  • 蛇形式: 每个单词之间使用”下划线”分割

打印数据

  • cosole.log

    声明变量

  • let a;

    声明常量(不能改变)

    const APP_NAME = “”;

    函数

  • function name(参数){ … return; }

    作用域

    块级作用域

    1. {
    2. let a = xxx;
    3. //内部可以访问
    4. console.log(a);
    5. }
    6. //外部不能访问
    7. console.log(a);

    函数作用域

    1. function sum(a,b){
    2. let res = a + b;
    3. //内部可以访问
    4. console.log(a);
    5. }
    6. //外部不能访问
    7. console.log(a);

    全局作用域/公共变量

    let a = “xx”;
    1. //多层也能使用
    2. {
    3. {
    4. {
    5. console.log(qq);
    6. }
    7. }
    8. }
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!