How to get the first line of a multi-line string in JavaScript

1 Answer

0 votes
const multiLineString = 
        "First line\n" +
        "Second line\n" +
        "Third line\n" +
        "Fourth line";
         
const firstLine = multiLineString.substring(0, multiLineString.indexOf("\n"));
         
console.log("The first line is: " + firstLine);

 
 
  
/*
run
 
The first line is: First line
  
*/

 



answered Aug 13, 2024 by avibootz

Related questions

2 answers 128 views
1 answer 115 views
1 answer 110 views
1 answer 109 views
1 answer 98 views
1 answer 98 views
1 answer 118 views
...