Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript add new line in string

//use 
 like this:
var newString = "this is on line 1 
and this is on line 2";
console.log(newString);
Comment

javascript string add new line

// let's say you want to make a code output game in a web page
// and you want to add a C# code
// do it like this!
// or you could use a textarea element and type it normally

const csCode = `
static double avrg(double num1, double num2, double num3, double num4){<br>
    &ThickSpace;double rslt = (num1 + num2 + num3 + num4) / 4;<br>
    &ThickSpace;return rslt;<br>
}<br>
int[] numbers = {10, 15, 8, 4, 2, 81, 90, 34, 23};<br>
int num1 = numbers[3];<br>
int num2 = numbers[7] - 1;<br>
int num3 = numbers[2] * numbers[1];<br>
double num4 = Math.Pow(numbers[3], 3);<br>
Console.WriteLine(avrg(num1, num2, num3, num4));
`;

// and then display it with innerHTML;
document.getElementById('code-display').innerHTML = csCode;

// the ThickSpace; will make it look like a tab keypress
// and now it will look good and will not generate on 1 single line
// and this works for TypeScript as well
Comment

PREVIOUS NEXT
Code Example
Javascript :: mktime in js 
Javascript :: react native use navigation outside component 
Javascript :: js array sum 
Javascript :: next router push state 
Javascript :: append after element jquery 
Javascript :: React Redux reducer combineReducers exemple 
Javascript :: javascript compare two dates 
Javascript :: inarray jquery 
Javascript :: get current time in javascript 
Javascript :: wait javascript 
Javascript :: react native open link in browser 
Javascript :: how to change h1 color in javascript 
Javascript :: how to add a shadow react native 
Javascript :: split string on multiple characters javascript 
Javascript :: immediately invoked function in javascript 
Javascript :: jquery remove click event 
Javascript :: get all div elements javascript 
Javascript :: js console.log color 
Javascript :: create angular app with routing and scss 
Javascript :: moment add 6 months 
Javascript :: jquery vdn 
Javascript :: iterate formData 
Javascript :: javascript multiples of 3 and 5 
Javascript :: javascript move last array element to first 
Javascript :: string to int js 
Javascript :: set date input html using js 
Javascript :: check if file is empty javascript fs 
Javascript :: expo image picker 
Javascript :: javascript check if boolean is undefined 
Javascript :: js get data from form 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =