let定义变量
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>let定义变量</title>
</head>
<body>
<script>
let a;
let b,c,d;
let e = 10;
let f=11, g =12;
//let f = 12; 不可重复声明
// let的作用域是代码块内有效
// {
// let girl = ‘girl name‘;
// }
// console.log(girl);
// var的作用域可在代码块外使用
// {
// var girl = ‘girl name‘;
// }
// console.log(girl);
//3 不存在变量提升
// console.log(girl);
// let girl = ‘name‘;
//4 不影响作用域链
{
let school = ‘清华大学‘;
function fn() {
console.log(school);
}
fn();
}
</script>
</body>
</html>