=============================코드=============================
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function callThreeTimes(call) {
for(let i = 1; i <= 3; i++){
call(i); /* print 함수를 세 번 호출해달라! */
}
}
function print(su){
document.write(`${su} 번째 함수 호출! <br/>`)
}
callThreeTimes(print);
</script>
</head>
<body>
</body>
</html>
