javascript replace dashes with spaces code example
Example 1: javascript replace spaces with dashes
title = title.replace(/\s/g , "-");
Example 2: javascript replace all spaces with dashes
let originalText = 'This is my text';
let dashedText = originalText.replace(/ /g, '-');
Example 3: js replace space with dash
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');