gpt4 book ai didi

javascript - 连接字符串和变量以获得变量

转载 作者:行者123 更新时间:2023-12-03 04:33:17 25 4
gpt4 key购买 nike

我希望能够将字符串传递到函数中,将其与公共(public)后缀连接起来,然后使用该新字符串作为现有变量。例如,

var firstInfo = "The first string says this.";

var secondInfo = "The second says that.";

updateInfo(arg)
{
console.log(arg + "Info");
}

updateInfo("first");
/* Should print "The first string says this.", but instead does nothing. */

我做错了什么?这是纯 JavaScript,但我对其他库持开放态度。

最佳答案

您需要使用window[arg + "Info"]来获取全局变量的值:

console.log(window[arg + "Info"]);

这是完整的 fiddle

关于javascript - 连接字符串和变量以获得变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43404346/

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