js 函数如何判断是被new还是被函数调用
2021-04-02 20:25
标签:lan ceo 改变 如何 自己的 class 上下 instance this js 函数如何判断是被new还是被函数调用 标签:lan ceo 改变 如何 自己的 class 上下 instance this 原文地址:https://www.cnblogs.com/ajanuw/p/12550173.htmlfunction 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还是被函数调用
文章链接:http://soscw.com/index.php/essay/71528.html