Blogger Information
Blog 47
fans 1
comment 0
visits 40720
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
变量,常量的声明与初始化,作用域的类型与查看方式,合法标识符的基本规则,最常用的三种函数类型
新手1314
Original
493 people have browsed it

1.变量,常量的声明与初始化

1.1变量声明

  1. let a;

1.2 常量声明

  1. const b;

1.3变量初始化

  1. a=10;

1.4常量初始化

  1. b = 20;

1.5 变量与常量的使用

  1. console.log(a);//变量使用
  2. console.log(b);//常量使用

2.作用域的类型与查看方式

2.1 作用域分为块作用域和函数作用域和全局作用域

2.1.1 块作用域:在{}包裹住的代码块

2.1.2 函数作用域:在函数中声明变量

2.1.3 全局作用域:不在{}包裹中和函数中声明的变量


3.合法标识符的基本规则

3.1 合法标识符允许数字开始,不允许特殊符号($,_除外)

4.最常用的三种函数类型

4.1 命名函数:

  1. function a(){
  2. return ('命名函数');
  3. }
  4. console.log(a());

4.2 匿名函数:

  1. let niming = function () {
  2. return "匿名函数";
  3. };
  4. console.log(niming());

4.3 箭头函数(最简化)

  1. f = () => "箭头函数";
  2. console.log(f());

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