Join the CodeScript platform
By creating an account, you agree to the Academic Honor Code and Terms of Service.
class Student extends User {
constructor(id) {
super(id);
this.status = 'active';
}