How to write multi-line strings in JavaScript

2 Answers

0 votes
let str = 'javascript, ' +
          'c c++, ' + 
          'python';
          
console.log(str); 

    
    
/*
run:
    
javascript, c c++, python
    
*/

 



answered May 19, 2024 by avibootz
0 votes
let str = 
'javascript, \
c c++, \
java python';
          
console.log(str); 

    
    
/*
run:
    
javascript, c c++, java python
    
*/

 



answered May 19, 2024 by avibootz

Related questions

2 answers 243 views
1 answer 113 views
3 answers 272 views
272 views asked Oct 12, 2018 by avibootz
1 answer 192 views
1 answer 126 views
1 answer 120 views
1 answer 122 views
...