function User(name, email) {
this.name = name;
this.email = email;
}
module.exports = User;
export a type
March 13, 2016
JavaScript
function User(name, email) {
this.name = name;
this.email = email;
}
module.exports = User;