I'm failing on the "2. Each word inside of stringWithQuotes should be wrapped in single quotes" task. I guess the output should be: 'each' 'word' 'in' 'single' 'quotes' but not shown like a array below? How can I solve this?
'each' 'word' 'in' 'single' 'quotes'
strinWithQuotes should be a string, not an array. Use double quotes on the outside and single quotes inside of the string.
strinWithQuotes
Post your code if you don't figure this one out by the end of the day.
Coderslang_Master
No puedo resolver este ejercicio:
im unable to print \n as a string
dunnec65
dunnec65 you should use the escape character. \n will add a line break to your string. \\n will add \n to your string. Try it!
\n
\\n
Thank you