예시
const array = ['foo', 'boo', 'zoo']; const obj = Object.assign({}, array); console.log(obj) //{0: "foo", 1: "boo", 2: "zoo"}