Jump to content

Can you do this?


utahcon

Recommended Posts

or you could do this:b = 'This rocks!'a= 'What rocks?'c = doThis(a+b )function doThis(ab){c = abreturn c}document.write©
Whats the point in putting the ab value into c, you could just return ab from the beginning... or a quicker version of this is:
a = "what rocks?";b = "this rocks!";c = a+b;

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...