팩토리 패턴

생성일
Jan 8, 2022 03:14 AM
태그
디자인 패턴
객체를 생성하는 함수
 
const createUser = ({ firstName, lastName, email }) => ({
  firstName,
  lastName,
  email,
  fullName() {
    return `${this.firstName} ${this.lastName}`;
  }
});
 
클래스를 쓰면 되지 않나?

Loading Comments...