补上prototype题目 Object.prototype.n=1 b = new Function(); Object.prototype={ n:5 , m:4 } console.log(b.n); console.log(b,m); var a =new Function(); console.log(a.n); console.log(a.m);