note

length 속성 본문

JavaScript/기본

length 속성

투한 2012. 3. 14. 11:03












<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//변수를 선언합니다.
	var characters = prompt('사용할 비밀번호를 입력해주세요', '6글자 이상');
	
	//출력합니다
	if(characters.length < 6){
		alert('6글자 이상으로 입력하세요.');
	}else{
		alert('잘했어요!');
	}
</script>
</head>
<body>

</body>
</html>