Javascript:
const camelCase = (string) => string.split(" ").map(str => `${str.charAt(0).toUpperCase()}${str.slice(1).toLowerCase()}` ).join('');
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: Daily Challenge #95 - CamelCase Method VIEW POST
FULL DISCUSSIONJavascript: