Split string by new line in JavaScript
In this tutorial, you are given a string, and learn how to split the string with new line character as delimiter.
Solution
To split string str
at new lines in JavaScript, call split() function on the string, and pass new line character as argument to split() function.
str.split('\n')
Example
1. In the following program, we take string value in name
variable, and split this string at new lines.
let name = 'apple\nbanana\ncherry';
let output = name.split('\n');
console.log(output);