첫 글자 대문자

김남경·2022년 11월 25일
0

catch errors

목록 보기
3/16
function a(string){
	return string.split(' ').map((x) => {
    	x.charAt(0).toUpperCase() + x.slice(1);
    }).join(' ');
}

profile
기본에 충실하며 앞으로 발전하는

0개의 댓글