Blogger Information
Blog 28
fans 0
comment 0
visits 13056
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS中变量常量与函数的声明与使用过程
手机用户1594223549
Original
307 people have browsed it

一.JS中变量常量

  1. // * 1.变量 let
  2. //声明+初始化(第一次复制)
  3. let a = 10
  4. console.log('a =',a)
  5. //更新第二次及以上的赋值,不用加let
  6. a = 20
  7. console.log('a =',a)
  8. console.log('---------------')
  9. // * 2.常量 const
  10. const USER_NAME = '张三'
  11. console.log('USER_NAME=', USER_NAME)
  12. // 常量禁止更新,不能继续赋值更新
  13. //let,const,首选用const,除非确定会更新,而var始终不用

二.函数的声明与使用过程

  1. // * 1.命名函数
  2. //调用:声明前成功,说明函数声明提升到了代码的顶部
  3. console.log(sum1(30, 40))
  4. //声明
  5. function sum1(a, b){
  6. return 'a + b =' + (a + b)
  7. }
  8. //调用:声明后调用
  9. console.log(sum1(10, 20))
  10. console.log('-------------')
  11. // * 2.匿名函数
  12. // const ,let 没有声明提升的效果
  13. // console.log(sum2(60, 70))
  14. const sum2 = function (a, b) {
  15. return 'a + b =' + (a + b)
  16. }
  17. console.log(sum2(40, 50))
  18. console.log('-------------')
  19. // * 3. 箭头函数
  20. // 匿名函数的语法糖(简化)
  21. // 语法: 删除function, (...)=>{...}
  22. let sum3 = (a, b) => {
  23. return 'a + b = ' + (a + b)
  24. }
  25. console.log(sum3(100, 200))
  26. // 只有一条return ,可不写 {...}
  27. sum3 = (a, b) => 'a + b = ' + (a + b)
  28. console.log(sum3(200, 300))
  29. // 只有一个参数, (...)也可不写
  30. sum3 = username => 'Hello, ' + username
  31. console.log(sum3('李四'))
  32. // 没有参数, (...)必须写
  33. sum3 = () => 'Hello, 王麻子'
  34. // _ 也是一个合法变量标识符
  35. // sum3 = _ => 'Hello, 王麻子'
  36. console.log(sum3())
  37. console.log('-------------')
  38. // * 4. 立即执行函数 (IIFE)
  39. // 一个语法,用 (...) 包住 就转为"表达式"
  40. let res = (function (a, b) {
  41. return 'a + b = ' + (a + b)
  42. })(300, 400)
  43. console.log(res)
  44. // * *箭头函数与匿名函数的最大区别: 没有自己的this
  45. // * * 1. 命名函数: 标识符
  46. // * * 2. 匿名函数: 变量/常量
  47. // * * 3. 箭头函数: 匿名函数语法糖
  48. // * * 4. IIFE: 一次性,常用作模块或封装
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