Answers for "replace space with hyphen/dash javascript"

7

javascript replace spaces with dashes

title = title.replace(/\s/g , "-");
Posted by: Guest on August-24-2020
0

replace space with hyphen/dash javascript

const str = "Sonic Free Games";
str = str.replace(/\s+/g, '-').toLowerCase();
console.log(str); // "sonic-free-games"
Posted by: Guest on August-09-2021

Code answers related to "replace space with hyphen/dash javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language