美文网首页
遍历数组

遍历数组

作者: i_木木木木木 | 来源:发表于2018-05-14 11:34 被阅读13次

    forEach()

    例:

        var arr = ["张三","李四","王五"];

        arr.forEach(function(index,value){

              console.log(index+":"+value);

    });

    相关文章

      网友评论

          本文标题:遍历数组

          本文链接:https://www.haomeiwen.com/subject/kgpddftx.html