danghuijian

javascript 面向对象编程指南 的一些题目

1、

function C () {
    this.a = 1;
   return false;  
    
}
console.log (typeof new C());

object

 

function C () {
    this.a = 1;
   return "bbb"
    
}
console.log (typeof new C());

也是object

除非return {} ,才是真正return的值,其他的都是object

分类:

技术点:

相关文章:

  • 2022-01-01
  • 2022-01-01
  • 2022-01-01
  • 2022-01-06
  • 2022-01-01
  • 2022-01-01
  • 2022-01-01
  • 2022-01-01
猜你喜欢
  • 2022-01-01
  • 2022-01-01
  • 2021-05-29
  • 2022-01-01
  • 2022-01-01
  • 2022-01-01
  • 2022-01-01
相关资源
相似解决方案