es6:for...of循环遍历迭代对象

简介: es6:for...of循环遍历迭代对象

es6:for…of循环遍历迭代对象

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <script>
        const names = ['zhang','li','deng','mongodb'];
        // for(let name of names.entries()){//.entries()得到数组中的索引值和值  不适用与对象
        //     console.log(name);
        // }
        // function sum() {
        //    let total = 0;
        //    for(let num of arguments){
        //        total = total + num;
        //    }
        //    console.log(total)
        //    return total;
        // }
        // sum(10,20,10,10,120);
        let name = 'ugfuishdihs';
        for(let  nam of name){
            console.log(nam)
        }
        // for...of.. 也可以用于 NODElist
    </script>
</body>
</html>
相关文章
|
7月前
thymeleaf如何迭代遍历,如何判断
thymeleaf如何迭代遍历,如何判断
|
1月前
|
安全 编译器 程序员
C# 中 foreach 循环和 for 循环深度比较
为什么建议你多数情况下使用 foreach 进行遍历循环?看完你就明白了
|
4月前
集合中常见方法及遍历方式
集合中常见方法及遍历方式
36 1
|
1月前
for 循环迭代出输出元素
【10月更文挑战第28天】for 循环迭代出输出元素。
23 0
|
1月前
用 for 循环迭代出输出元素
【10月更文挑战第28天】用 for 循环迭代出输出元素。
27 0
|
3月前
|
索引 Python
如何优雅地遍历可迭代对象?
如何优雅地遍历可迭代对象?
29 0
|
3月前
|
索引 Python
解密可迭代对象的排序问题
解密可迭代对象的排序问题
31 0
|
6月前
|
C语言
循环迭代判断\丢番图
循环迭代判断\丢番图
32 2
|
7月前
|
C#
C# 循环遍历使用
C# 循环遍历使用
164 0
|
7月前
各种遍历方法以及注意点
各种遍历方法以及注意点
53 0