I found this for loop in codepen . Why he used for loop like this ? 4 parameters ? His project is working . Please explain simple ,I am beginer . thank you
  timer = setInterval(function(){
    oCG.clearRect(0,0,1000,800);
    for(var i=0,l=aObj.length; i< l;i++){    <<<<======
      fnChange(aObj[i]);
      checkPeng(aObj,i);
    }
    
  },1000/60);
 
     
     
    