moonwatcher348

moonwatcher348

Mostly inactive nowadays…

What is this strange word ‘fun’? I’ve never heard of it.

If I’m gone without saying “bye” or anything, it means that my internet is having trouble with opening this

Completed all free levels in CodeCombat and most premium levels, the only level that stumps me is Serpent Savings, I could probably do Reflective Shield and the other levels, but I just don’t have the heroes, and of course, I don’t have premium right now so I can’t complete the rest of the premium levels in game dev, web dev, and mountain

PM/@ me for help in Javascript, Python, or really any language that CoCo has available, I’ll probably be able to at least help. (I’m best at Javascript)

class Person {
    constructor (name) {
        self.name = name;
        self.isAlive = true;
    }
    
    die () {
        self.isAlive = false;
    }
}
const me = new Person('Joshua Kordek');
while (me.isAlive) {
    me.sleep();
    me.eat();
    me.read();
    me.code();
}

https://github.com/deadbeatcoder is my Github profile… (joshkordek3 is old one)