title
Complete the solution so that the function will break up camel casing, using a space between words.
example1
solution('camelCasing') // => should return 'camel Casing'
My solution
1 | function solution(string) { |
good solution
1 | function solution(string) { |