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