gpt4 book ai didi

javascript - 用函数定义变量

转载 作者:行者123 更新时间:2023-11-28 13:48:49 24 4
gpt4 key购买 nike

我需要这个脚本的帮助解释

var test = {
property_1 : 'aaa',
property_2 : 'bbb'
}

var place = function(str, ph){
return test[ph];
}

定义place的含义是什么以及该函数的返回类型是什么?
我不明白参数 strph 是从哪里来的?

这是我在第 19 行读到的屏幕截图教程

enter image description here

谢谢。

最佳答案

What is the meaning of definition place?

函数是 JavaScript 中的一流函数。它们可以被指定为变量的值。

然后您可以调用该变量 place,这将调用它指向的函数(其值)。

What will be return type of that function?

可以是任何东西。它很可能是一个字符串未定义

I can't understand from where is parameter str and ph come?

它们会像这样被传递...

place(1, 2);

在您的示例中,第一个参数似乎是多余的,因为它没有在函数体内使用。

关于javascript - 用函数定义变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12236235/

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