我試圖找出如何通過一個變量作爲對象指標,例如:使用變量作爲目標指數
function createObject(index,value){
var data = {index:value};
console.log(data);
}
createObject('hello','world');
//result Object { index="world"} instead of Object { "hello"="world"}
我找不到這個具體的答案至今..
謝謝!
怎麼想呢? Object {index =「world」}或Object {「hello」=「world」}? – ncm
[引用Javascript對象中的鍵]的可能重複(http://stackoverflow.com/questions/518971/referencing-keys-in-a-javascript-object) – Denis