Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to merge a argument of a function with a variable But i don't know how to do that.

firstDates = [];

function myFunction(partOne) {
    partOne + Dates.push(someOtherVar); 
}

myFunction(first);

I know that this not works, but what would be the right way?

share|improve this question
1  
For starters, decide what your variable names should be, and stick with them. – the system Jan 30 at 3:08
How is the first line related to the rest of the code? I'm confused... – Marty Wallace Jan 30 at 3:08
i want to merge variables with arguments in my function – user1386906 Jan 30 at 3:09
1  
What is first? What is someOtherVar? What do you mean by "merge" the variable with the argument? What does this have to do with pushing into an Array? – the system Jan 30 at 3:10
2  
XY Problem – the system Jan 30 at 3:17
show 4 more comments

1 Answer

up vote 2 down vote accepted

why not something like this?

var dates = {};

function myFunction(partOne) {
   dates[partOne] = [];               // dates["first"] = []
   dates[partOne].push(someOtherVar); // dates["first"].push(someOtherVar)
}

myFunction("first");

Otherwise what you are trying to accomplish is an eval type of set up. This is generally a very bad idea. Don't use dynamically named variables.

share|improve this answer
1  
Dates = []; should be var dates = {}; – the system Jan 30 at 3:19
@thesystem No, because in that case you would need Dates.partOne = [];. Both methods will work, but I did choose to use arrays because it was closer to OP's test case. However, it would be beneficial to show future users an Object based method. If you write it out as an answer, I'll upvote it. EDIT: actually come to think of it, that doesn't work either, but still and Object based approach would be nice. – Joseph Marikle Jan 30 at 3:24
1  
Nope, you'd need dates[partOne] = [];. An Array (which you're using) is an Object. Both will access properties/indices in an identical manner. But using an Array for this is misleading. The proper choice for an unordered list of key/value pairs is an Object. – the system Jan 30 at 3:27
...and then var should always be used to make declarations explicit, and by convention, only constructor functions should start with a capital letter. – the system Jan 30 at 3:29
1  
@thesystem I see! I did have that incorrect then. thanks for pointing it out. I'll edit the answer – Joseph Marikle Jan 30 at 3:29
show 1 more comment

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.