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
  • 相关阅读:
    提取数据用strpos函数比较,预期和实际不符问题解决
    thinkphp模板中foreach循环没数据的错误解决
    错误之thinkphp模型使用发生的错误
    ThinkPHP添加模板时,犯的三个错
    mysql中的comment用法
    在cmd下输入/g无效
    Windows下PHPUnit安装
    python中string.casefold和string.lower区别
    python3数据类型
    python终端颜色设置
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4114647.html
Copyright © 2011-2022 走看看