对象转数组的方法

1.Array.form(object)  注意点:object必须有length属性,key值必须是数字例如:obj = { 0: 'a', 1: 'b', 2: 'c' }

2.2.let arr = []; for(let i of obj){ arr.push(obj[i])}(obj为对象)

posted @ 2018-09-02 18:49  思绪在漫游  阅读(1496)  评论(0编辑  收藏  举报