values()是对键值的遍历

    1. for (let elem of ['a', 'b'].values()) {
    2. console.log(elem);
    3. }
    4. // 'a'
    5. // 'b'