gpt4 book ai didi

javascript - JS 构造函数中的返回语句

转载 作者:可可西里 更新时间:2023-11-01 02:53:02 27 4
gpt4 key购买 nike

当 JavaScript 函数体中的 return 语句用作新对象(使用“new”关键字)的构造函数时,它有什么作用?

最佳答案

通常 return 只是退出构造函数。但是,如果返回值是一个对象,它会被用作 new 表达式的值。

考虑:

function f() {
this.x = 1;
return;
}
alert((new f()).x);

显示 1,但是

function f() {
this.x = 1;
return { x: 2};
}
alert((new f()).x);

显示 2.

关于javascript - JS 构造函数中的返回语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2938940/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com