class WhoAmI {
constructor() {
this.user = "Vaisakh Manu";
this.current_edu = "CSE Student @SJCET Palai";
this.currently_learning = ["JavaScript", "Java", "Python", "C", "C++", "HTML", "CSS", "Node.js", "Shell"];
this.fun_fact = "Life has no ctrl+Z";
this.hobbies = ["Gaming", "Coding", "Movies", "Skating", "Cricket"];
this.interests = ["Video Games", "Web Development", "Open Source Contribution"];
this.contact = {
discord: "i.hyper",
email: "vaisakhmanu0005@gmail.com"
};
this.projects_url = "/~https://github.com/ItzMeHyper?tab=repositories";
}
getLocation() {
return "Kerala, India";
}
getCity() {
return ["Idukki π‘ || 127.0.0.1/06", "Kottayam π || 127.0.0.1/05"];
}
ambitions() {
return "Still Unknown";
}
reachMe() {
return `π« How to reach me:\n- Discord: i.hyper\n- Email: vaisakhmanu0005@gmail.com`;
}
projects() {
return `π¨βπ» All of my projects are available at: \n${this.projects_url}`;
}
const whoAmI = new WhoAmI();
console.log(whoAmI.user); // Vaisakh Manu
console.log(whoAmI.current_edu); // CSE Student @SJCET Palai
console.log(whoAmI.currently_learning); // ["JavaScript", "Java", "Python", "C", "C++", "HTML", "CSS", "Node.js", "Shell"]
console.log(whoAmI.interests); // ["Video Games", "Web Development", "Open Source Contribution"]
console.log(whoAmI.fun_fact); // Life has no ctrl+Z
console.log(whoAmI.hobbies); // ["Gaming", "Coding", "Movies", "Skating", "Cricket"]
console.log(whoAmI.getLocation()); // Kerala, India
console.log(whoAmI.getCity()); // ["Idukki π‘ || 127.0.0.1/06", "Kottayam π || 127.0.0.1/05"]
console.log(whoAmI.ambitions()); // Still Unknown
console.log(whoAmI.reachMe()); // π« How to reach me:
Discord: i.hyper
Email: vaisakhmanu0005@gmail.com
console.log(whoAmI.projects()); // π¨βπ» All of my projects are available at:
https://github.com/ItzMeHyper?tab=repositories
}
|
|