前端学习笔记202310学习笔记第一百零玖天-vue3-链式调用&对象属性与遍历&this指向&caller_callee之21
function Test(b){
this.d=3;
var a=1;
function c(){
}
}
Test(123)
console.log(window.d)
//
运行结果
function Test(b){
this.d=3;
var a=1;
function c(){
}
}
Test(123)
console.log(window.d)
//
运行结果