Define Lines in a String
By Stephen Bucaro
You know that to define a String in Java Script requires that you
enclose the data within quotes. For example, the statement below displays
a string (the first line in Abraham Lincoln's in the Gettysburgh address)
in a message box.
alert("Four score and seven years ago our fathers brought forth on this
continent, a new nation, conceived in Liberty, and dedicated to the
proposition that all men are created equal.");
(code required to be on one line.)
As you can see above, this creates an unappealing too wide message box.
We can improve the aspect ratio of the message box by placing newline \n
character escape sequences within the string to explicitly define where
the string should break to create a new line, as shown below.
alert("Four score and seven years ago our fathers\n brought forth on this
continent, a new nation,\n conceived in Liberty, and dedicated to the\n
proposition that all men are created equal.");
(code required to be on one line.)
This creates the more appealing message box shown above.
• If you want to format your code so that it has the same line
structure as that displayed in the message box, enclose each line in quotes and
use the string concatenation operator to rejoin the lines, as shown below.
alert("Four score and seven years ago our fathers\n" +
"brought forth on this continent, a new nation,\n" +
"conceived in Liberty, and dedicated to the\n" +
"proposition that all men are created equal.");
This makes your code more neat and more understandable.
More Java Script Code: • Java Script confirm Message Box • Java Script Quick Reference : JavaScript toString Method Converts a Number to a String • Java Script Strings • Java Script alert Message Box • The while Loop • Window Object Properties and Methods • Java Script Trigonometric Methods • Search and Replace Strings • Java Script Math.sin Method • The Browsers History Object
|