- 2
I want to set two string with p. Thanks you sir.
Set two string with p. https://code.sololearn.com/W0eutceg1kh4/?ref=app
3 ответов
+ 2
How hard is it to use relevant tags? You've been asked to do that multiple times by now. At this point I have to assume that you're deliberately wasting people's time.
0
Simon Sauter
She has problem with English so she can't ask proper question. But she is actually learning through this application.
0
Malick Diagne
You can join two string with + like this:
paragraph.innerHTML = "Malick " + "Hamath";
Or you can use array instead of object to join 2 String
paragraph.innerHTML = ["Malick","Hamath"].join(' ');