Blogger Information
Blog 19
fans 0
comment 0
visits 10137
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JavaScript中的变量、常量、作用域以及标识符
搬砖来学php
Original
348 people have browsed it

1.声明变量

let 使用 let 可以声明块级别作用域的变量
var 使用 var 可声明全局或函数级别作用域的变量
const 声明为常量,则它的值不能更新

let a 就是声明变量,1就是赋予的值,

  1. <script>
  2. {
  3. //声明变量并赋予值
  4. let a =1;
  5. console.log(a);
  6. }
  7. </script>

如果不赋予变量的值默认值为空即(undefind),let a; 这里没有赋予值所以得到的就是undefind

let 和var 变量存在不同的是 var可以变量可以重复声明,不支持”块作用域。推荐只用(let)两者都可以声明多个变量
let 变量名1,变量名2,变量名3;…..不同变量之间使用逗号隔开

举例

  1. let 变量名1 = 值1,变量名2 = 值2,…,变量名3 = 值;
  2. let nane="王老师", age="20",man="男”;

2.常量const,声明为常量,则它的值不能更新

  1. {
  2. const APP_NAME ="PHP中文网"
  3. console.log(APP_NAME);
  4. }

作用域

  1. <script>
  2. //1.块作用域
  3. {
  4. //声明变量并赋予值
  5. let a =1;
  6. console.log(a);
  7. }
  8. // 函数作用域
  9. function jieguo(a , b){
  10. // 函数内声明的变量
  11. let res = a * b;
  12. return res;
  13. }
  14. console.log(jieguo(10 , 40));
  15. // 得出的结果a乘以b 10*40=400
  16. </script>


标识符的基本规则

禁止特殊符号, ($ _) 可以用,不允许用数字开始

  1. let $age="20";
  2. console.log($age);
  3. let _bge="20";
  4. console.log(_bge);
  5. // 大驼峰写法
  6. let CoLor ="颜色"
  7. console.log(CoLor)
  8. // 小驼峰写法
  9. let seKs ="性别"
  10. console.log(seKs)

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