This is what I want to do.
Let's write a date:
month day year
April 15 2001
I can document.write the date, however, I have three parts to the document.write:
document.write(monthNames[month] + " " + date + ", " + year);
Now, I want to put that whole mess into a variable like this however I don't know how to do it:
var alldate = _______
So that, I can do this:
document.write(alldate);
and the result will be:
April 15 2001
This is probably very simple for all of you, but I can't figure it out.
Thanks,
-G
PS I just noticed that I put it in the wrong forum..*sigh*