js 스 트 리밍 그룹 과 스 트 리밍 대상 의 차이

1137 단어
js 스 트 리밍 그룹 과 스 트 리밍 대상 의 차이
  
    //----------------for        --  
    var i,myArr = [1,2,3];  
    for (var i = 0; i < myArr.length; i++) {  
        console.log(i+":"+myArr[i]);  
    };  
    //---------for-in            
    var man ={hands:2,legs:2,heads:1};  
    //        clone  ,      (object,Array,function)      ,      ,      
    if(typeof Object.prototype.clone ==="undefined"){  
        Object.prototype.clone = function(){};      
    }  
    //  
    for(var i in man){  
        if (man.hasOwnProperty(i)) { //filter,   man       
            console.log(i,":",man[i]);  
        };  
    }  
    //     print hands:2,legs:2,heads:1  
  
    for(var i in man) {//       
        console.log(i,":",man[i]);  
    }      
    //       
    //hands : 2 index.html:20  
    //legs : 2 index.html:20  
    //heads : 1 index.html:20  
    //clone : function (){}   
    for(var i in man) {  
        if(Object.prototype.hasOwnProperty.call(man,i)) { //    
            console.log(i,":",man[i]);  
        }  
    }  
   //     print hands:2,legs:2,heads:1  
  

좋은 웹페이지 즐겨찾기