typeof

imjingu·2023년 7월 12일
0

개발공부

목록 보기
97/481
<!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>
        /*
        자료형 검사 : 자료형을 확인할 때 typeof 연산자 사용
        */

        //typeof 연산자 사용 : typeof(자료)
        console.log(typeof ("안녕하세요")); //string
        console.log(typeof (100)); //number
        console.log(typeof (true)); //boolean

        //괄호가 없어도 됨 : 연산자라서 가능
        console.log(typeof "안녕하세요"); //string
        console.log(typeof 100); //number
        console.log(typeof true); //boolean

        console.log(typeof "안녕하세요" === "string");
        console.log(typeof ("안녕하세요") === "string");
        console.log(typeof ("안녕하세요" === "string"));

        //자바 스크립트에서는 변수에 함수를 할당하는 것이 가능.
        //즉, 함수도 하나의 자료형임.
        let fun = function() {
            console.log('hello');
        }
        fun();
        console.log(typeof fun);
    </script>
</body>
</html>

0개의 댓글