Algorithm/codewars

Jaden Casing Strings 답안

Bonita SY 2021. 3. 22. 18:23
728x90
반응형

문제)

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.push(`${str[0].toUpperCase()}${str.slice(1)}`);
  });
  return result_strs.join(' ');
};

 

테스트 결과)

 

728x90
반응형

'Algorithm > codewars' 카테고리의 다른 글

You're a square! 답안  (0) 2021.03.23
Descending Order 답안  (0) 2021.03.23
Convert string to camel case 답안  (0) 2021.03.23
Categorize New Member 답안  (0) 2021.03.23
Decode the Morse code 답안  (0) 2021.03.23