Skip to content

Instantly share code, notes, and snippets.

@IrhaAli
Created October 7, 2022 20:46
Show Gist options
  • Save IrhaAli/b496c2a518e5251bd83e7e81c1ba4091 to your computer and use it in GitHub Desktop.
Save IrhaAli/b496c2a518e5251bd83e7e81c1ba4091 to your computer and use it in GitHub Desktop.
Turn a string into camel case
const camelCase = function(input) {
//split the words
let output = input.split(' ');
//capitalize the words
for (let i = 1; i < output.length; i++){
output[i] = output[i].charAt(0).toUpperCase() + output[i].substring(1);
}
//join the words
return output.join('');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment