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

2021-04-02 20:25

阅读:490

标签: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


评论


亲,登录后才可以留言!