Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's a little bit difficult to explain what I need, so I'll use some non-working code:

function createSimpleObjet(name, value){
    return {
        name: value
    };
}

//create it
var obj = createSimpleObject('Message', 'Hello World!');
//test it:
alert(ojb.Message); //should alert 'Hello World!'

How would I go about?

share|improve this question
1  
possible duplicate of create object using variables for property name – Felix Kling May 21 '12 at 10:01
Yeah, I see. Really difficult to search where you are looking when one doens't know how do call it :D – Kees C. Bakker May 21 '12 at 10:29

2 Answers

up vote 3 down vote accepted

In order to do this try square bracket notation:

function createSimpleObject(name, value){
    var obj = {};
    obj[name] = value;
    return obj;
}
share|improve this answer

You can't use a variable as a property name in an object literal. You have to create the object, and then assign the value using square bracket notation.

var object = {};
object[name] = value;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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