π§πΎπ π π! π¨'π π²ππππ π’ππππ π¨'π πΊ π₯πππππΎππ½ π½πΎππΎπ πππΎπ πΊππ½ π½πΎπππππΎπ π»πππ π½πππ π½πππππΊπ ππππ½ππΌππ.
πΆππΎπ π¨'π πππ πΌππ½πππ πππ'π π πΏπππ½ ππΎ ππ πΊππππ ππΊππΎ, πππππ ππππππΎπ ππ π πΎπΊπππππ ππππΎπππππ π¨ πΏπππ½ πΏππ
class Simon extends Person {
constructor() {
super();
this.name = "Simon Cyril";
this.age = 21;
this.work = ["Freelance", "Building BeatBridge"];
this.education = ["BSC Benson Idahosa", "Dayspring"];
this.hobbies = ["Drawing", "Playing Piano", "Gaming", "Reading"];
}
current_location() {
return " Abuja, Nigeria";
}
next_locations() {
return ["United State?"];
}
currently() {
return {
studying: ["Computer Science"],
learning: ["Web3", "Three JS"],
};
}
}