10 lines
558 B
JavaScript
10 lines
558 B
JavaScript
class User {
|
|
constructor() {
|
|
this.username = "not logged in";
|
|
this.password = "there";
|
|
this.userId = 0;
|
|
this.tests;
|
|
this.leaderboard;
|
|
this.nextTest = `satisfy powerful pleasant bells disastrous mean kited is gusted romantic past taste immolate productive leak close show crabby awake handsails finicky betray long-term incompetent wander show manage toys convey hop constitute number send like off ice aboard well-made vast vacuous tramp seed force divergent flower porter fire untidy soggy fetch`;
|
|
}
|
|
} |