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?
first? What issomeOtherVar? 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