7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
class User {
|
|
constructor() {
|
|
this.username = "not logged in";
|
|
this.password = "there";
|
|
this.userId = 0;
|
|
}
|
|
} |