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" );
|
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" ); |
||||
|
|
|
In your example, you can break the string into two pieces:
Or, when it's a string, as in your case, you can use a backslash as @Gumbo suggested:
When working with other code (not in quotes), line breaks are ignored, and perfectly acceptable. For example:
|
|||||||||||||
|
|
Put the backslash at the end of the line:
Edit I have to note that this is not part of ECMAScript strings as line terminating characters are not allowed at all:
So using string concatenation is the better choice. |
|||||
|
|
You can just use
That should work |
|||
|
|
|
Break up the string into two pieces
|
|||||
|
|
Interesting to note. Tried:
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. |
|||
|
|
|
No need of any manual break in code. Just add \n where you want to break.
This will show the alert like
|
||||
|
|