15 lines
		
	
	
		
			398 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			398 B
		
	
	
	
		
			JavaScript
		
	
	
	
export class Account {
 | 
						|
    username;
 | 
						|
    password;
 | 
						|
 | 
						|
    // constructor(username = 'it68aus@gmail.com', password = 't3Ei#8L!qy6W$9') {
 | 
						|
    //     this.username = username;
 | 
						|
    //     this.password = password;
 | 
						|
    // }
 | 
						|
 | 
						|
    constructor(username = 'phamnhutkhanggpc04910@gmail.com', password = 'Khang12345@') {
 | 
						|
        this.username = username;
 | 
						|
        this.password = password;
 | 
						|
    }
 | 
						|
}
 |