I'm just your average Joe with a dabbling of coding knowledge and absolutely zero experience in stock trading. When I'm not scrolling through stupid reels on Instagram, I like to pretend to work on projects, hang out with people who barely tolerate me, manage discord servers, go on adventures (to the terrace and a gaming cafe), and daydream about new ideas that I will likely never act on because of laziness. Despite my general cluelessness.
So if you're looking for someone who is mediocre at everything and has a knack for making bad jokes, I'm your guy
Here is my Discord Server if you wanna join and here is my website :)
class Ninju {
constructor() {
this.name = "Ninju Iyer";
this.username = "nxxju";
this.location = "Bengaluru, India";
this.instagram = "@nxxju.iyer";
this.web = "https://ninju.is-a.dev";
this.discord = "nxxju.iyer";
}
toString() {
return this.name;
}
}
const me = new Ninju();
console.log(me.toString());