Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a character in JavaScript to break up a line of code so that it is read as continuous despite being on a new line?

Something like....

1. alert ( "Please Select file   
2. \ to delete" );
share|improve this question

6 Answers

up vote 59 down vote accepted

In your example, you can break the string into two pieces:

alert ( "Please Select file"
 + " to delete");

Or, when it's a string, as in your case, you can use a backslash as @Gumbo suggested:

alert ( "Please Select file\
 to delete");

When working with other code (not in quotes), line breaks are ignored, and perfectly acceptable. For example:

if(SuperLongConditionWhyIsThisSoLong
  && SuperLongConditionOnAnotherLine
  && SuperLongConditionOnThirdLineSheesh)
{
    // launch_missiles();
}
share|improve this answer
Can you break up an if statement ? – Tommy Feb 3 '09 at 18:29
Yes: I updated the answer with an example. – Michael Haren Feb 3 '09 at 18:47
1  
thanks. (Launch Missiles!) – Tommy Feb 3 '09 at 18:49
5  
But beware of the automatic semicolon insertion mechanism: Try to have return on one row and a "string" on the next one at the end of the function and you get undefined as a result. – some Feb 3 '09 at 21:30

Put the backslash at the end of the line:

alert("Please Select file\
 to delete");

Edit    I have to note that this is not part of ECMAScript strings as line terminating characters are not allowed at all:

A 'LineTerminator' character cannot appear in a string literal, even if preceded by a backslash \. The correct way to cause a line terminator character to be part of the string value of a string literal is to use an escape sequence such as \n or \u000A.

So using string concatenation is the better choice.

share|improve this answer
1  
Gumbo rocks..!! – Jeaffrey Gilbert Jul 14 '11 at 7:41

You can just use

1:  alert("Please select file" +
2:        " to delete");

That should work

share|improve this answer

Break up the string into two pieces

alert ("Please Select file" +
       "to delete");
share|improve this answer
2  
But do not forget to have a space at the end of first or the beginning of the second chunk ;) – Majid Fouladpour Jul 4 '12 at 20:21

Interesting to note. Tried:

alert("Some \
    string \
    wrapped \
    across \
    mutliples lines.")

And this worked. However, on accident!, there was a space character following the final backslash (all other backslashes were at the end of the line). And this caused an error in the javascript! Removing this space fixed the error, though.

This is in ADT for Android using Cordova.

share|improve this answer

No need of any manual break in code. Just add \n where you want to break.

alert ("Please Select file \n to delete");

This will show the alert like

Please select file to delete.

share|improve this answer

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.