变量和函数声明当中的问题
程序员文章站
2023-12-21 21:25:46
...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
console.log(a) //undefined
var a = 1
//f() //报错因为undefined不能调用
var f = function(){
}
f1()
function f1(){
console.log(111)
}
</script>
</body>
</html>