zoukankan      html  css  js  c++  java
  • [ES6] 10. Array Comprehensions

    ES6 decided that Array Comprehensions will not included in this version, ES7 will include this. Therefore, only FireFox support this, you can test it under FireFox Firebug.

    Since CoffeeScrip also has array comprehension, let's go over how it looks in CoffeeScript first:

    for person in people
      console.log(person.name) if person.age > 18
    console.log "#{person.name}" for person in people when person.age > 18
    // In coffeeScrip,
    //<expression> for <elm> in <list> when <elm> <condition>

    Read More: http://www.cnblogs.com/Answer1215/p/4002666.html

    Array Comprehensions:


    var people = [
        {
            firstName: "Allen",
            secondName: "Hook",
            email: "allen@abc.com"
        },
        {
            firstName: "Anton",
            secondName: "Tee",
            email: "tee@abc.com"
        },
        {
            firstName: "Yui",
            secondName: "Gegg",
            email: "gegg@abc.com"
        }
    ];

    For example, I have a list of people, and I want to get all the emails into a spreate array:

    var emails = [for(person of people) person.email];
    console.log(emails);

    If

    you can add if segement as well after for..of:

    var emails = [for(person of people) if(person.firstName === "Yui") person.email];
    console.log(emails); // ["gegg@abc.com"]

    Mutli for..of:

    var nums = [1, 2, 3, 4, 5];
    var letters = ["a", "b", "c", "d", "e"]
    
    var battleship = [for(num of nums) for(letter of letters) num + letter]
    
    console.log(battleship);
    // ["1a", "1b", "1c", "1d", "1e", "2a", "2b", "2c", "2d", "2e", "3a", "3b", "3c", "3d", "3e", "4a", "4b", "4c", "4d", "4e", "5a", "5b", "5c", "5d", "5e"]
    var nums = [1, 2, 3, 4, 5];
    var letters = ["a", "b", "c", "d", "e"]
    
    var battleship = [for(num of nums) [for(letter of letters) num + letter]]
    
    console.log(battleship);
    
    // [["1a", "1b", "1c", 2 more...], ["2a", "2b", "2c", 2 more...], ["3a", "3b", "3c", 2 more...], ["4a", "4b", "4c", 2 more...], ["5a", "5b", "5c", 2 more...]]

    String can also be considered as an 'array':

    let letter = [for (letter of 'abcde') if (/[aeiou]/.test(letter)) letter].join('');
    
    console.log(letter); // ae
  • 相关阅读:
    mysql增加字段,修改字段,增加索引等语句
    php获取post参数的几种方式
    微信小程序开发注意事项
    jQuery的deferred对象详解
    jquery.pagination.js的使用
    js实现一键复制
    PHP读取文件内容的五种方式
    3.3 模块的搜索路径
    3.2 py文件的两种功能
    3.1 模块的定义与分类,import,from...import
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4114647.html
Copyright © 2011-2022 走看看