lwhjp

joined 1 year ago
[–] [email protected] 3 points 6 months ago

In case anybody hasn't seen it, the relevant Oglaf (NSFW)

[–] [email protected] 1 points 10 months ago

Nothing followed by the sound of a lot of cars leaving the Facility very fast.

[–] [email protected] 1 points 1 year ago

TDD

const max12 = (x, y) => {
    if (x === 1 && y === 2) {
        return 2;
    } else if (x === 7 && y === 4) {
        return 7;
    } else {
        return x;
    }
};