语句

  • if
  • do-while
  • while
  • for —- 推荐用let声明
  • for in —- 推荐用const声明
  • for of —- for-await-of
  • 给for循环添加标签 label: for(){}
  • break 和 continue 语句 —- 可以结束添加标签的循环
  • with —- 不推荐使用
  • switch —- 类似if,是全等运算符比较

    函数

    推荐最佳实践 —- 要么有返回值,要么没有,不要在if中使用返回值