第 12 课 2 / 18 | 编码:L12-06
核心知识

const 与 let

默认使用 const;只有变量需要重新赋值时才使用 let。

  • const 绑定不能重新赋值
  • let 可重新赋值
  • 两者都有块级作用域
const course = 'Web 前端';
let score = 80;
score = 86;