Skip to content

Instantly share code, notes, and snippets.

@meftunca
Created May 31, 2019 09:14
Show Gist options
  • Save meftunca/38b54b4cc67a7b8403145ac833e1d96f to your computer and use it in GitHub Desktop.
Save meftunca/38b54b4cc67a7b8403145ac833e1d96f to your computer and use it in GitHub Desktop.
CamelCase
const camelize = camelize(str) => {
return str.replace(/\W+(.)/g, (match, chr) =>
{
return chr.toUpperCase();
});
};
console.log(camelize("javaScript-Exercises"));
console.log(camelize("JavaScript exercises"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment