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

22-7map

时间:2019-09-07 13:18:19      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:microsoft   title   round   fun   one   meta   console   span   ret   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body {
            font-family: "Microsoft YaHei", serif;
        }

        body, dl, dd, p, h1, h2, h3, h4, h5, h6 {
            margin: 0;
        }

        ol, ul, li {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        img {
            border: none
        }
    </style>
</head>
<body>

<script>

    // 遍历数组,可以返回一个数组

    // 这个和6是一样的
    // 就是多一个返回值

    let a = [1,2,4];

    let b = a.map(function (x,y,z) {
        console.log(x, y, z);
        return x*x
    });

    console.log(a);
    console.log(b);


</script>
</body>
</html>

 

22-7map

标签:microsoft   title   round   fun   one   meta   console   span   ret   

原文地址:https://www.cnblogs.com/zhangyu666/p/11480132.html

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