문제) www.codewars.com/kata/5390bac347d09b7da40006f6/train/javascript Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 내가 푼 답) String.prototype.toJadenCase = function () { var strs = this.split(' '); var result_strs = []; strs.forEach((str) => { result_strs.p..