Constructor Function

PHOTO EMBED

Tue Sep 08 2020 23:26:25 GMT+0000 (Coordinated Universal Time)

Saved by @dgaldon #javascript

function User(name) {
  this.name = name;
  this.isAdmin = false;
}

let user = new User("Jack");
content_copyCOPY

https://stackoverflow.com/questions/8698726/constructor-function-vs-factory-functions