자바스크립트 ucfirst()

1 개요[ | ]

자바스크립트 ucfirst()
function ucfirst(s) { return s.charAt(0).toUpperCase()+s.slice(1); }
console.log( ucfirst('hello world!') );
// Hello world!
console.log( ucfirst('HELLO WORLD!') );
// HELLO WORLD!

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}