0
How can I get this multiple lined
https://code.sololearn.com/W040G9eQ69qb/?ref=app Can someone help me get this JavaScript to output on multiple lines. I know /n is used but I canât get it to work.
1 Answer
+ 2
Hi Alex Peterson,
/n is a invalid syntax for line breaks in JavaScript. Therefore the valid syntax is
\n
I hope this code will clearify the breaklines in JavaScript for uđ
https://code.sololearn.com/WdogJfMHuA57/?ref=app