js 데이터 형식 과 type: of

860 단어
1, 6 가지 데이터 형식 (1 설 7 가지)



    //         、   、  、  、null、undefined、  
    //   
    var num = 2;
    var num2 = 2.30;
    show(typeof num);
    
    //    
    var str = 'abc';
    var str2 = "123";
    show(typeof str);
    
    //   
    var boo1 = true;
    var boo2 = false;
    show(typeof boo1);
    
    //   
    var obj = {
        name: '  ',
        age: 18
    }
    show(typeof obj);
    
    // null
    var aa = null;
    show(typeof aa);
    
    // undefined
    var bb;
    show(typeof bb);
    
    //   
    var arr = ['a', 2, null];
    show(typeof arr);
    
    
    
    function show(data) {
        document.write(data);
        document.write('<br />');
    }
    


기본 데이터 형식 과 참조 데이터 형식
기본 데이터 유형
인용 데이터 형식

좋은 웹페이지 즐겨찾기