Blogger Information
Blog 26
fans 0
comment 1
visits 10495
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
实例演示JS中变量常量与函数的声明与使用过程
P粉751989631
Original
270 people have browsed it

实例演示JS中变量常量与函数的声明与使用过程

  1. // 变量:
  2. // 1. let 是新推出的变量名称,之前有var,以后不推荐使用
  3. // 比如: let username = '我爱你中国'
  4. 2. const 常量
  5. // 一般用作于名命,用大蛇名命表达
  6. const USER_NAME = '中国人'
  7. // 调取过来就是,数据禁止更新,以后推荐使用这个变量
  8. console.log('USER_NAME=', USER_NAME)
  9. // 声明
  10. function sum(a, b){
  11. runturn 'a + b =' + (a + b)
  12. }
  13. function sum7(a, b) {
  14. return "a + b =", a + b;
  15. }
  16. // 可以简写:
  17. sum7 = (a, b) => {return a + b}
  18. console.log(sum7(1, 2))
  19. // 必须遵循先声明后使用原则,为了以后开发方便
  20. // 这是先声明,变量不在 funtion 的后面,
  21. // 这里的const 也可以用let, 但是为了禁止更新,推荐用const
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:"runturn"? 态度决定一切, 继续加油,
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