본문 바로가기
개발새발 대외활동/개발 | KB국민은행 It's Your Life 5기

[008] Javascript 콜백 함수

by 카랑현석 2024. 5. 29.

콜백 함수 (Callback function)

- 파라미터로 함수를 전달하는 함수

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        function whatYourName(name, callback) {
            console.log(`name: , ${name}`);
            callback(); // 인자로 받은 finishFunc 함수 호출
        }
        
        function finishFunc() {
            console.log('finish function');
        }
        
        whatYourName('hyeonseok', finishFunc);
    </script>

</body>
</html>