JavaScript: Convert a string from camelcase
JavaScript fundamental (ES6 Syntax): Exercise-229 with Solution
Camelcase to String
Write a JavaScript program to convert a string from camelcase.
- Use String.prototype.replace() to break the string into words and add a separator between them.
- Omit the second argument to use a default separator of _.
Sample Solution:
JavaScript Code:
Output:
some database field name some-label-that-needs-to-be-camelized some_javascript_property
Visual Presentation:
Flowchart:

Live Demo:
For more Practice: Solve these Related Problems:
- Write a JavaScript program that converts a camelCase string into a space-separated, lowercased sentence.
- Write a JavaScript function that inserts spaces before uppercase letters in a camelCase string to create a human-readable sentence.
- Write a JavaScript program that transforms a camelCase identifier into a title-cased string with spaces between words.
- Write a JavaScript function that detects camelCase patterns and replaces them with a delimited format such as snake_case or spaced words.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to log the name of a function.
Next: Write a JavaScript program to get the human readable format of the given number of milliseconds.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics