• thedeadwalking4242@lemmy.world
    link
    fedilink
    arrow-up
    17
    arrow-down
    3
    ·
    6 hours ago

    I’ve been programming in typescript recently, and can I say. I fucking hate JavaScript and typescript. It’s such a pain so much odd behaviors.

    • masterspace@lemmy.ca
      link
      fedilink
      English
      arrow-up
      2
      arrow-down
      2
      ·
      4 hours ago

      Lol name one outside of it’s well known equality rules that linters check for.

      Also, name the language you think is better.

      Because for those of us who have coded in languages that are actually bad, hearing people complain about triple equals signs for the millionth time seems pretty lame.

      • thedeadwalking4242@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        3 hours ago

        Recently I encountered an issue with “casting”. I had a class “foo” and a class “bar” that extended class foo. I made a list of class “foo” and added “bar” objects to the list. But when I tried use objects from “foo” list and cast them to bar and attempted to use a “bar” member function I got a runtime error saying it didn’t exists maybe this was user error but it doesn’t align with what I come to expect from languages.

        I just feel like instead of slapping some silly abstraction on a language we should actually work on integrating a proper type safe language in its stead.

            • masterspace@lemmy.ca
              link
              fedilink
              English
              arrow-up
              2
              arrow-down
              2
              ·
              2 hours ago

              K, well configure your linter the way a professional Typescript environment should have it configured, and it will be there too. Not to be rude but not having a linter configured and running is a pretty basic issue. If you configured your project with Vite or any other framework it would have this configured OOTB.

              • Füsilier Breitlinger@infosec.exchange
                link
                fedilink
                arrow-up
                3
                arrow-down
                2
                ·
                2 hours ago

                @masterspace

                Not to be rude but not having a linter configured and running is a pretty basic issue.

                Yeah, if you’re a C programmer in the 1980s, maybe. But it’s 2006 now and compilers are able to do basic sanity checks all on their own.

                • masterspace@lemmy.ca
                  link
                  fedilink
                  English
                  arrow-up
                  3
                  arrow-down
                  1
                  ·
                  2 hours ago

                  Interpreted languages don’t have compilers, and one of the steps that compilers do is LINTING. You’re literally complaining about not configuring your compiler properly and blaming it on the language.