发布网友 发布时间:2022-04-22 04:08
我来回答
共1个回答
热心网友 时间:2022-04-22 16:46
new 会创建 pre 的对象, 但是没有 new 的话就没有没有可返回的值或对象了,所以是 undefined。 如果不想new 新的对象的话,可以在 pre 的方法里 返回一个值或对象。 function pre(){ this.radius = Math.random(); return this.radius;}