1、javascript変数の詳細解

1801 ワード

js変数タイプ:1.文字列変数


    
    1-    



    //      
    username ='  ';
    document.write('<h1>'+username+'</h1>')



2.整体


    
    1-    



    //     
    //
    username ='100';
    alert(username-5);



3.浮動小数点
3.141592627
4.ブール
fale   true


    
    1-    



    //      
    //
    num = 67;
    if(num>=60){
        alert("  ");
    }else{
        alert('   ');
    }
</body>
</html>
</code></pre> 
 <p>5.  </p> 
 <pre><code><html lang="en">
<head>
    <meta charset="UTF-8">
    <title>1-    </title>
</head>
<body>
<script>
    //  
    ps =['  ','  ','  ','  '];
    alert(ps);



6.オブジェクト
JavaScript  :
1.js  
obj  =new object();


    
    1-    



   obj  = new Object();
    obj.age = '20';
    obj.name = 'xiaoming';
    document.write('<h1>my age is '+ obj.age+'</h1>);
obj.say = function(){
alert(123);
}




2.dom  
eleobjc = document;
7.Jsonオブジェクト


    
    1-    



jsobj = {'1':'22',
         '2':'22'
         'say':function(){
             alert(123);
         }          
}
    jsobj.say();



8.NaNタイプ
# not a number

9.nullタイプ
#                    
str= null;
10.undefinedタイプ
#