Skip to content

Instantly share code, notes, and snippets.

@utsukushiihime
Last active December 12, 2020 06:44
Show Gist options
  • Save utsukushiihime/5c39423d8597f1dff7408b3ff79c0069 to your computer and use it in GitHub Desktop.
Save utsukushiihime/5c39423d8597f1dff7408b3ff79c0069 to your computer and use it in GitHub Desktop.
toSnakeCase JavaScript
function SnakeCase(str) {
const regex = /\W+/g;
for (char in str) {
let newStr = str.toLowerCase().replace(regex, "_");
return newStr;
}
}
console.log(SnakeCase("This*is a Great-Night"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment