摘要: Array.from([1, , 2, , 3], (n) => n || 0) // [1, 0, 2, 0, 3] function typesOf () { return Array.from(arguments, value => typeof value) } typesOf(null, 阅读全文
posted @ 2020-07-09 11:00 LaLaLa_heng 阅读(133) 评论(0) 推荐(0) 编辑