码迷,mamicode.com
首页 > Web开发 > 详细

js 函数如何判断是被new还是被函数调用

时间:2020-03-23 09:46:00      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:lan   ceo   改变   如何   自己的   class   上下   instance   this   

function Ajanuw() {
  // 函数被new上下问会改变
  if (this instanceof Ajanuw) {
    console.log("new");
  } else {
    console.log("fun");
  }
}

Ajanuw();
new Ajanuw();

函数调用返回自己的实例

const l = console.log;
function Ajanuw() {
  if (!(this instanceof Ajanuw)) {
    return new Ajanuw();
  }
}

l(Ajanuw());     // Ajanuw {}
l(new Ajanuw()); // Ajanuw {}

js 函数如何判断是被new还是被函数调用

标签:lan   ceo   改变   如何   自己的   class   上下   instance   this   

原文地址:https://www.cnblogs.com/ajanuw/p/12550173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!