Sometimes, we want to create string with multiple spaces in JavaScript.
In this article, we’ll look at how to create string with multiple spaces in JavaScript.
How to create string with multiple spaces in JavaScript?
To create string with multiple spaces in JavaScript, we use  
.
For instance, we write
const str = "hello" + "         " + "world";
to add 5 spaces to the str
string with "         "
.
Conclusion
To create string with multiple spaces in JavaScript, we use  
.