如果new运算符是个方法而不是一个运算符-----《JS精萃》
Function.method('new',function() {
  var that=Object.beget(this.prototype);
  var other=this.apply(that.arguments);
  return (typeof other==='object'&&other)||other;  //如果他返回的不是对象,就返回该新对象;
});
各位大侠能帮我 举一个例子说明other返回的是对象吗?