You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write simple .camelCase method (camel_case function in PHP, CamelCase in C# or camelCase in Java) for strings. All words must have their first letter capitalized without spaces.
String.prototype.camelCase=function(){
//your code here
let array = Array.from(this)
let newArray = []
for (let i = 0; i<array.length; i ++) {
if ((array[i] == " ") && array[i+1] !== undefined ){