I know you can play the game at chrome://dino, but it doesn’t evoke the same nostalgic feeling of a 10yr old me turning on aeroplane mode and spamming space bar to try and beat my brother’s high score. Good memories.

  • erogenouswarzone@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    6
    ·
    1 year ago

    I’m not sure why there’s so much love for FF here. It sucks for web development - or rather there are some very important features that Firefox doesn’t have that Chrome does have.

    • HumbleHobo@kbin.social
      link
      fedilink
      arrow-up
      5
      ·
      1 year ago

      As someone that uses FF regularly AND does web development, I’m curious, specifically, what important features are you talking about?

      • erogenouswarzone@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        So when you’re writing JavaScript, as I’m sure you know, it’s bad form to add prototypes to primitives.

        So let’s say you have an Object, and it holds data about a person: hair color, eyes, weight, height, etc.

        But if you want to make that object do something, like calculate the bmi, what do you do?

        You could just go ahead and add “.calculateBmi” to Object, but that’s bad form, right?

        So you create a Person object, and it has weight, height and all the other stuff, then you can also assign it methods, like .calculateBmi, and that’s great.

        Well, in Chrome when you console.log the Person object, it’s says “Person” and it lets you open it right up and look around to see what the height and weight are, and it’s great.

        However, In FF, it just says “Object.” And you have to open it, then open a few other things underneath it to find out what type of object it is, and it’s members and methods.

        And its takes way longer to debug. And there’s a few other, little things like that, that I can’t think of. I’d love to use FF, but it’s just not there yet.