첫문자를 대문자
페이지 정보
본문
function jsUcfirst(str) { if (!str) return ''; return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase(); }
추천
0
비추천
0
- 다음글 table과 display table 속성 25.09.29
자료실
function jsUcfirst(str) { if (!str) return ''; return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase(); }