我希望能夠將字符串傳遞到函數中,並將其與公共後綴連接起來,並將該新字符串用作現有變量。例如,連接字符串和變量以獲得變量
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,但我對其他圖書館開放。
在我讀到eval()之前,它有一個很糟糕的說唱,我不想嘗試它。但是在這種情況下,你已經證明它是正確的解決方案。 – Naltroc