1 2 3 4 5 6 7 8 9 10 11
export const Status = Object.freeze({ ACTIVE: "active", INACTIVE: "inactive", }); export class User { constructor(name, status) { this.name = name; this.status = status; } }