next line in string javascript code example
Example 1: how to go to next line in javascript
document.write("\n");
Example 2: new line javascript
console.log('Hello \n World');
Example 3: javascript string return character
var str = "HELLO WORLD";
var res = str.charAt(0);