"> 01-03_js-input "> 01-03_js-input ">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>01-03_js-input</title>
<script type="text/javascript">
	/*
		alert()
		- 브라우저에 작은 창을 띄우는 메서드.
	*/
	window.alert('윈도우 화면에 메시지 전달~');
	
	/*
		prompt()
		- 브라우저에 입력 상자를 띄우는 메서드.
	*/
	var value = prompt('숫자를 입력하세요');
	console.log(value);
	
	/*
		confirm()
		- 사용할 문자열과 함께 '확인','취소' 버튼을 표시.
	*/
	var check = confirm('확인 또는 취소 버튼을 클릭하세요');
	console.log(check);
</script>
</head>
<body>

</body>
</html>