"> 03-03_callback "> 03-03_callback ">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>03-03_callback</title>
<script type="text/javascript">
	/*
		# 콜백 함수
		- 함수의 매개변수에 함수를 전달.
	*/
	function tenLoop(value){
		for(let i=0; i<5; i++){
			console.log((i+1) + ' 회');
			value();
		}
	}
	tenLoop(function(){
		console.log('- go -');
	});
	
</script>
</head>
<body>

</body>
</html>