JavaScript 랜덤 한글

Jmnote (토론 | 기여)님의 2016년 10월 6일 (목) 15:05 판 (→‎개요)

1 개요

JavaScript 랜덤 한글
function random_hangul() {
	return String.fromCharCode( 44031 + Math.ceil( 11172 * Math.random() ) );
}

for( var i=0; i<20; i++ ) {
	document.write( random_hangul() );
}

2 같이 보기

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