const title = '리액트 입문'; const price = 500; const book = { title, price }; // const book = { title: title, price: price }; console.log(book);