Sep 21, 2001 #1 Dan01 Programmer Jun 14, 2001 439 US Hi, In VB, you can continue a string on a new line using, "start of string " & _ & "end of string". Does Javascript has something similar? Thanks, Dan.
Hi, In VB, you can continue a string on a new line using, "start of string " & _ & "end of string". Does Javascript has something similar? Thanks, Dan.
Sep 21, 2001 #2 tsdragon Programmer Dec 18, 2000 5,133 US this will work: Code: var longstring = "start of string" + "end of string"; It's not really continuing the string, but concatenating two shorter strings. Tracy Dryden tracy@bydisn.com http://www.bydisn.com Meddle not in the affairs of dragons, For you are crunchy, and good with mustard. Upvote 0 Downvote
this will work: Code: var longstring = "start of string" + "end of string"; It's not really continuing the string, but concatenating two shorter strings. Tracy Dryden tracy@bydisn.com http://www.bydisn.com Meddle not in the affairs of dragons, For you are crunchy, and good with mustard.
Sep 21, 2001 Thread starter #3 Dan01 Programmer Jun 14, 2001 439 US Thanks Tracy. Dan. Upvote 0 Downvote