84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
目前除了使用a.shift()以及ES6中的let关键字,还有其他方法吗?方法一:
var i = 0;i < len; i++
a.shift();
方法二:
let i = 0;i < len; i++
a[i];
求更多方法
人生最曼妙的风景,竟是内心的淡定与从容!
var a = [1,2,3]; var len = a.length; for(var i = 0,j=0;i<len;i++){ setTimeout(function(){ console.log(a[j++]); }); }
var a = [1,2,3]; var len = a.length; for(var i=0; i<len; i++) { setTimeout(function() { console.log(a[len - i--]); }); }
for(var i=0; i<len; i++){(function(j){setTimeout(....)})(i);}
for(let item of a) { setTimeout(function() { console.log(item); }, 200); }
for(var i=0; i<len; i++){
(function(j){
setTimeout(....)
})(i);
}