Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save prashant-shahi/5e5a25b21f91455266fa167971c390d1 to your computer and use it in GitHub Desktop.

Select an option

Save prashant-shahi/5e5a25b21f91455266fa167971c390d1 to your computer and use it in GitHub Desktop.
JS: convert to kebab-case
const convertToKebabCase = (string) => {
return string.replace(/\s+/g, '-').toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment