replace space by dash code example
Example: js replace space with dash
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');