声明全局变量

使用 var 在全局作用域声明的变量会成为全局对象的属性。例如:

var globalVar = '我是全局变量';
console.log(window.globalVar); // 输出: 我是全局变量