let prices = { banana: 1, orange: 2, meat: 4, }; let doublePrices = Object.fromEntries( // 객체를 배열로 변환해서 배열 전용 메서드인 map을 적용하고 fromEntries를 사용해 배열을 다시 객체로 되돌립니다. Object.entries(prices).map(([key, value]) => [key, value * 2]) ); alert(doublePrices.meat); // 8 //객체 > 배열 // 배열 > 객체 전환 let list = { banana: { title: '서울 바나나', 배송유무: true }, orange: { title: '서울 오랜지', 배송유무: false }, }; let 배송체크 = Object...