JavaScript Zastąp przestrzeń minus
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');
VasteMonde
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');