titleCase.js

Codewars 알고리즘 풀이


Problem

  • Write a function that will convert a string into title case, given an optional list of exceptions(minor words).
    • 문자열을 title case로 변환하는 함수를 작성한다.



Solution 01