Skip to content

Instantly share code, notes, and snippets.

@jasonvarga
Created November 25, 2020 22:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonvarga/08cce047bfbd1ce32e911d2e36bbadfd to your computer and use it in GitHub Desktop.
Save jasonvarga/08cce047bfbd1ce32e911d2e36bbadfd to your computer and use it in GitHub Desktop.
JS snake_case to PascalCase
const snakeToPascal = str => str
.split('_')
.map(word => word[0].toUpperCase() + word.slice(1))
.join('');
snakeToPascal('hello_world'); // HelloWorld
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment