1. Home
  2. Docs
  3. JAVASCRIPT
  4. Object
  5. init 定義一個 Object

init 定義一個 Object

const name = {
  first: 'Peng',
  last: 'Jie',
};
console.log(name.first);
console.log(name.last);