Files
study/modern-react/my-modern/obj_prop.js

7 lines
152 B
JavaScript

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