21. 윈도우 객체

2024. 11. 4. 16:44자바스크립트(Javascript)

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>window 객체</title>
</head>
<body>
    <script>
        // for(let w in window){
        //     console.log(window[w])
        // }

        //BOM
        //setTimeout() : 특정시간이 지난후에 특정 함수를 롤백
        const hello = function(){
            alert(`안녕하세요 자바스크립트`)
        }

        // const st = setTimeout(hello, 5000) //5초
        // clearTimeout(st)  //setTimeOut을 취소함

        //setInterval : 특정 시간동안 반복해서 특정 한수를 콜백
        const si = setInterval(hello, 3000)
        
        const clearInterval = function(si){
            //clearInterval(si)
            console.log(`hello 함수가 중지되었음`)
        }

    </script>
    <button onclick="clearInterval()">중지</button>
</body>
</html>
728x90
LIST

'자바스크립트(Javascript)' 카테고리의 다른 글

23. location history 객체  (0) 2024.11.04
22. 시계만들기  (0) 2024.11.04
19. Date 객체  (2) 2024.11.04
18. String 객체  (0) 2024.11.04
17. Math 객체  (0) 2024.11.04