- object literal syntax
const obj1= {}- object constructor syntax
const obj2 = new Object()- object.create method
- class ES6
const person = new Person('minsoo', '23');
function Person(name, age) {
//this = {};
this.name = name,
this.age = age
//return this;
}