let a = Array.from(3)console.log(a) //length 为3的数组 a[0] = undefinedlet b = Array.of(3)console.log(b)//length为1的数组 b[0]=3