LogoCodeScript

Create your account

Join the CodeScript platform

OR

By creating an account, you agree to the Academic Honor Code and Terms of Service.

CodeScript Logo

"Join hundreds of peers mastering algorithms in real-time."

class Student extends User {

constructor(id) {

super(id);

this.status = 'active';

}

}