码迷,mamicode.com
首页 > 其他好文 > 详细

forof循环

时间:2017-08-15 00:55:19      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:for   bre   火狐   obj   执行   ble   一个   const   nbsp   

一、语法

1、遍历数组

let myArr=[1,2,3,4,5];
for (let ele of myArr) {
console.log(ele);
}
let myArr=[1,2,3,4,5];
for (const ele of myArr) {
console.log(ele);
}

2、遍历字符串

let myStr=“camille”;
for (let ele of myStr) {
console.log(ele);
}

3、循环一个拥有enumerable属性的对象

for of循环并不能直接使用在普通的对象上,但如果我们按对象所拥有的属性进行循环,可使用内置的Object.keys()方法。

for (var key of Object.keys(myOject)) {
console.log(key + ": " + myOject[key]);
}

循环遍历对象的value,它既比传统的for循环简洁,同时弥补了forEach和for in循环的短板。它主要作用于数组,类数组对象,字符串,可以break,continue,return。火狐谷歌支持该语句,需要设置,IE不支持。

二、执行效率

var arr = [],
    arrlen = arr.length = 1000000;
for(var i=0; i<arrlen; i++){
  arr[i] = ‘looptest‘;
}
var t1 = +new Date();
for(var item of arr){
}
var t2 = +new Date();
console.log(‘for of:‘ + (t2-t1));

 

forof循环

标签:for   bre   火狐   obj   执行   ble   一个   const   nbsp   

原文地址:http://www.cnblogs.com/camille666/p/js_forof_loop.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!