문제 링크 : To Lower Case
/** * @param {string} s * @return {string} */ var toLowerCase = function(s) { return s.toLowerCase() };