`I'm In
\\
Love \\ """ '''
++ With ++
\"""\"""
""JavaScript""``
thanks for help:)
`I'm In
\\
Love \\ """ '''
++ With ++
\"""\"""
""JavaScript""``
thanks for help:)
Please be more accurate. What challenge does your post refer to?
Where is the link to the challenge?
If you mean just to concatenate words to get the desired sentence try the following:
var a = "I'm " + "In Love " + "With " + "JavaScript!"
console.log(a);
You can also use template literals. Not sure if you are trying to include (escape) quotations ""
in the string?
const str = `I'm in "Love" with [object Object]...err I mean "JavaScript".`
console.log(str) // I'm in "Love" with [object Object]...err I mean "JavaScript".
the quotations is the problem thanks for your help