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 267 views
1 answer 117 views
3 answers 277 views
277 views asked Oct 12, 2018 by avibootz
1 answer 199 views
1 answer 132 views
1 answer 124 views
1 answer 131 views
...