var a = 2; function exec() { this.a = 1; } console.log(exec.a);// 输出undefined想知道这时候exec.a指的是什么呢,函数的本质不也是对象吗,这里为什么访问不到 查看完整描述