• dreadgoat@kbin.social
      link
      fedilink
      arrow-up
      146
      arrow-down
      3
      ·
      11 months ago

      used for things it wasn’t created for

      I think Python gets a point here, as it is very good at doing what it was created for.
      Javascript even sucks at its stated goal.

    • MaximumOverflow@lemmy.ca
      link
      fedilink
      arrow-up
      94
      ·
      11 months ago

      You don’t master Javascript, ever. You just become accustomed to the madness and stop caring, while sometimes doing things right.

    • thewebroach@lemmy.world
      link
      fedilink
      arrow-up
      19
      arrow-down
      2
      ·
      edit-2
      11 months ago

      Gotta say, ive done magical things in Javascript. NodeJS in particular can do damn near anything you set your mind to, and it doesnt give a damn if you use tab or 4 spaces.

      • PeWu@lemmy.ml
        link
        fedilink
        arrow-up
        7
        ·
        11 months ago

        For real, you really can do anything there, sometimes sacrificing efficiency, but still.

      • Bye@lemmy.world
        link
        fedilink
        English
        arrow-up
        20
        ·
        11 months ago

        That’s the joke

        It’s implying js isn’t a programming language because web stuff isn’t real programming

          • Aceticon@lemmy.world
            link
            fedilink
            arrow-up
            8
            ·
            11 months ago

            Not even close.

            Most software out there is not consumer facing (there is a huge amount of custom stuff inside companies of all sizes) and even in the consumer space most software nowadays resides in … smartphones.

            Unless, of course, you count HTML (literally a Markup Language, so data formatting for display not code) as programming, in which case I’ll leave you to enjoy your fantasy world.

          • SloppyPuppy@lemmy.world
            cake
            link
            fedilink
            arrow-up
            4
            ·
            11 months ago

            You kinda forget that for each front end you see theres at least 4 times more backend to support it.

            Also there are ton of non fron facing software.

            Anyway its not really a competition. No one will be offended if you are wrong or not.

            • SokathHisEyesOpen@lemmy.ml
              link
              fedilink
              arrow-up
              3
              ·
              11 months ago

              The back-end functionality is still web functionality. Just because a user doesn’t see all the server stuff doesn’t mean it’s not necessary to support a website. There are billions of websites across the world, and they almost all use some combination of back-end, front-end, database, and server code.

        • Vilian@lemmy.ca
          link
          fedilink
          arrow-up
          23
          arrow-down
          4
          ·
          11 months ago

          it’s a 4chan post, they don’t “think” they are lawless animals, deprived from any sense of rationality

      • CheezyWeezle@lemmy.world
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        11 months ago

        They do share a significant commonality, though; they are both interpreted languages, rather than compiled. Sure, you can compile them, but they are meant to be run interpreted so you can quickly and easily tweak and change things and not have to wait for compilation to see the results. In that regard they are very comparable.