8
Pigwig
7y

Best part of being a developer...

let you = {
developer: true,
coffee: 9001,
sweatpantsOn: true,
makeCoolShit: function() {
// TODO: make cool shit here
}
};

while(you.coffee > 9000 && you.developer && you.sweatpantsOn) {
you.makeCoolShit();
}

Comments
  • 1
    me.coffee = 0;
    me.coke = 9002;
    me.chocolate = 12000;

    while(me.coke > 9000 && me.chocolate > 9000 && me.developer && me.sweatpantsOn) {
    me.happyMakingCoolShit();
    }

    // Otherwise, hell yeah! :D
Add Comment