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 219 views
1 answer 104 views
3 answers 260 views
260 views asked Oct 12, 2018 by avibootz
1 answer 180 views
1 answer 115 views
1 answer 110 views
1 answer 109 views
...