标签:uil tps www. img word attr keyword 初始化 amp
var、const、let 都可以用来定义变量,但三者之间存在区别。
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
var a;
console.log(‘定义a变量,此时没有初始化,a的值为:‘,a);
a = 1;
console.log(‘修改a的值,此时a的值为:‘,a);
function chageVarA () {
a = 2;
console.log(‘在函数里面修改a的值,此时a的值为:‘,a);
}
chageVarA();
console.log(‘在函数执行后,全局变量a的值为:‘,a);
</script>
</body>
</html>
执行的结果为:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="smy1.com text/javascript">
const a;
console.log(a);
</script>
</body>
</html>
执行的结果为:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
const a = 1;
console.log(‘初始化a变量,此时a的值为:‘,a);
a = 2;
console.log(‘修改a的值,此时a的值为:‘,a)
</script>
</body>
</html>
执行的结果为:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
var a = 1;
console.log(‘初始化变量a,此时a的值为:‘,a);
function changeLet(){
let a = 2;
console.log(‘执行变量修改函数,在函数内容a的值为:‘,a);
}
changeLet();
console.log(‘执行变量修改函数后,全局变量a的值为:‘,a);
</script>
</body>
</html>
执行的结果为:
标签:uil tps www. img word attr keyword 初始化 amp
原文地址:https://www.cnblogs.com/xinshijue6080/p/10119610.html