1. Array.from() // 将伪数组(类数组)变成真数组
    2. function test() {
    3. console.log(Array.isArray(arguments)); // arguments是伪数组
    4. console.log(arguments.push); // undefine
    5. // 将arguments变成真数组
    6. arguments = Array.from(arguments);
    7. console.log(Array.isArray(arguments));
    8. }
    9. test(1, 2, 3, 4, 5);
    1. find()
    2. findIndex()
    3. includes()
    4. keys() // 遍历键, 了解
    5. values() // 遍历值, 了解
    6. entries() // 遍历键值对, 了解