let和const在同一作用域不允许重复声明变量 块级作用域 base::块级作用域 let globalLet = '我不是全局对象属性'; console.log(window.globalLet); // 输出: undefined