vote up 0 vote down star

Hey there,

I am using the following method to basically create a JSON string.

var saveData = {};
saveData.a = 2;
saveData.c = 1;

However the .a and .c don't cut it for what I need to do, I need to replace these with strings. So something like..

var name = 'wibble';
saveData.name = 2;

This would get accessed with

saveData.wibble

Does anyone know how this could be achieved?

flag

4 Answers

vote up 3 vote down check
var name = "wibble";
saveData[name] = 2;

alert(saveData.wibble);

Note that, in JavaScript, the following notations are equivalent:

obj.key
obj["key"]
link|flag
vote up 2 vote down

Use the map accessor:

var name = 'wibble'
saveData[name] = 2
link|flag
vote up 1 vote down

You can access Javascript objects using a dictionary notation:

var name = 'wibble';
saveData[name] = 2;

saveData.wibble is now 2.

link|flag
vote up 0 vote down

i want to access an opject or function useing variable how can i do that?

link|flag
Hey Mohammad, You will get a better response by creating a fresh question. – Toby Nov 19 at 23:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.