gpt4 book ai didi

javascript - JavaScript 中的函数 return 是什么?

转载 作者:行者123 更新时间:2023-11-28 15:18:39 25 4
gpt4 key购买 nike

我看过一些视频,他们说“函数总是返回值!!”。如果我们不使用 return 元素,那么它会返回什么呢?就像下面的函数:

function Foo(){
var x = 4.
y =5;
z = x + y;
}
x = Foo();
console.log(x);

最佳答案

当使用x调用该函数时,该函数应返回“未定义”属性

一般有两种情况:

// 1
console.log(x)

// 2
console.log(x())

在场景 1(如您的示例中所示)中,它将返回函数的引用(可用于稍后执行)。在场景 2 中,它将执行函数并返回未定义的属性。 Do check out this website if to know more

undefined is a property of the global object, i.e. it is a variable in global scope. The initial value of undefined is the primitive value undefined.

关于javascript - JavaScript 中的函数 return 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32491735/

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