How Slow Is JavaScript? | Prime Reacts

Поделиться
HTML-код
  • Опубликовано: 4 янв 2025

Комментарии • 250

  • @simondev758
    @simondev758 Год назад +57

    Saw this recommended and got nervous sweats heh. Very cool to get covered here!

    • @Vancha112
      @Vancha112 10 месяцев назад +1

      It was an interesting video :) there's a whole world of optimization out there that I wish got covered more. As a python developer using mostly Django I have not personally been exposed to a lot of it yet, but it's good to be reading up on comparisons like these once in a while :)

    • @SuperMixedd
      @SuperMixedd 6 месяцев назад

      congrats :D

  • @Quillraven
    @Quillraven Год назад +250

    in case anyone is interested more about game development and how to avoid garbage collection: look at "object pooling". You basically have pools of specific objects that you create/"destroy" a lot but instead of removing them and let the GC remove them, you put them into a pool to reuse them later on. When creating a new object you instead check your pool first, if there is a free instance available and if yes, you use it. Otherwise, you create a new instance that will be later on added to the pool when no longer needed.
    That way GC doesn't kick in but of course you require more memory over time. Just a quick and simple explanation, there is of course more to it.
    Just wanted to share that with you lads if anyone is interested.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +92

      i use them on servers i want to go fast.
      the best part is you will end up using less memory :)

    • @AbhinavKulshreshtha
      @AbhinavKulshreshtha Год назад +30

      @@ThePrimeTimeagen can you make a video on this concept. Or better, a video on advance tricks for node js/ts performance analysis.

    • @MattRose30000
      @MattRose30000 Год назад +7

      especially useful with particle systems

    • @peterpetersen6613
      @peterpetersen6613 Год назад +1

      @@AbhinavKulshreshtha He's made some videos on that on his main channel already.

    • @AG-ur1lj
      @AG-ur1lj Год назад

      I too, am not so great at integrals. Hawking did complex path integrals exclusively using his imagination from the time he was ~10 years younger than I am. Conclusion: I am shit.

  • @NotTheHeroStudios
    @NotTheHeroStudios Год назад +40

    Dam he made it at least 8 minutes without bringing up rust.

  • @wadecodez
    @wadecodez Год назад +267

    TypedArrays are fun to mess around with until you realize that nobody uses them and you slowly go insane rewriting every library in binary to get a performance boost. Don’t look at web sockets. UDP isn’t possible and most libraries default to transporting JSON. So a single bit flip becomes 100+ bytes.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +98

      shhhhhh, dont talk the truth
      and udpsockets hurt so much you cannot do

    • @NathanHedglin
      @NathanHedglin Год назад +4

      Just like BigInt. . .such a pain

    • @theultimateevil3430
      @theultimateevil3430 Год назад +1

      @@ThePrimeTimeagen WebTransport is a thing, it can do unreliable QUIC streams (basically UDP with bells and whistles), though the standard is in draft, Chrome implementation is experimental, and there are no Rust backend libraries -- the closest is quiche HTTP/3 but you'll need to implement webtransport yourself on top of it

    • @salvadorroibon
      @salvadorroibon Год назад +1

      I should use var or let?

    • @pavloburyanov5842
      @pavloburyanov5842 Год назад

      @@salvadorroibon const

  • @Dashpoint-lk3zf
    @Dashpoint-lk3zf Год назад +269

    Blazinlgy ...slow

  • @topticktom
    @topticktom Год назад +9

    I actually know a compiler dev from the V8 team. He complains still that this was the hardest things he could ever imagine.

  • @julkiewitz
    @julkiewitz Год назад +36

    That just goes to show that there is a lot of work needed in high-level high-performance languages. Rust is certainly a step in the right direction, but it's not exactly easy to use. The problem is that for over a decade or so, on the back of exponential hardware performance improvement developers collectively decided that performance is not even a secondary concern, it's a 10th or 20th priority. And that's just usually a very bad decision. It's possible to spend too much time worrying about performance, but nowadays 99.9% of people spend too little time worrying about performance. And languages that are used for boosting developer productivity - don't help either. They encourage trade offs where the resulting code is not only slow but it's also inherently unoptimizable without a complete rewrite.

    • @michawhite7613
      @michawhite7613 11 месяцев назад

      To be more specific, Rust is hard to learn. I think it's straightforward once you learn the rules. There's a lot of rules to learn.

    • @panjak323
      @panjak323 11 месяцев назад

      How is rust high level language ?

  • @principleshipcoleoid8095
    @principleshipcoleoid8095 Год назад +28

    5:53 I think idle games generally don't allocate/dealocate much of anything after the game starts.

    • @billy818
      @billy818 Год назад +1

      verry comon to leak objects in the event loop
      when I used to write unity script in C# it was my no 1 issue untill I understood what gc is.
      bullets/guns/dead enemies/props that are far away ect ect are all destroyed unless you explicitly pool them

  • @jsonisbored
    @jsonisbored Год назад +20

    I would love a video on writing fast JavaScript. You're so experienced that you can explain complicated things simply

    • @Gamer-ct6hb
      @Gamer-ct6hb Год назад +5

      Also him: Can't write a faster version of left-pad.

    • @XDarkGreyX
      @XDarkGreyX Год назад

      ​@@Gamer-ct6hbwell, fck caches during development

  • @Talk378
    @Talk378 Год назад +46

    The algorithm comparison is only useful in the sense that it shows any non trivial algorithm implemented in js could have performance within an order of magnitude of C. Prior to V8 this would not have been the case.

  • @CallousCoder
    @CallousCoder Год назад +10

    I did a quick (not strictly scientific) test on my channel, making a very simple API using SQLLite to select a single record.
    Where I did ECMA/NODJES vs C++ and sure after some linux kernel tuning the C++ was a lot faster but JavaScript did impress for an interpreted single language interpreter. The memory usage of NodeJS consuming I believe it was 90MB resident vs 5MB of the C++ was more of a concern than the slower processing.

  • @jmnoob1337
    @jmnoob1337 Год назад +4

    1:36 You heard it hear, folks! Prime says "Javascript is awesome!"

  • @brandonmansfield6570
    @brandonmansfield6570 Год назад +14

    Your general feeling matches mine. JavaScript is easy to write in many ways and I find it highly productive. Performance goes out the window when you start allocating a bunch of memory. Keep your critical paths at a low memory footprint and you get much better performance. You really 'optimize' by minimizing the use of the GC.

  • @i_youtube_
    @i_youtube_ Год назад +29

    HTML is blazingly fast

  • @jakobbouchard
    @jakobbouchard Год назад +17

    haven’t watched yet, but SimonDev is great, love this guy

  • @Dev-Siri
    @Dev-Siri Год назад +14

    It's so strange to hear "X is the reason why JavaScript is *awesome* " from Prime.

  • @t3dotgg
    @t3dotgg Год назад +6

    Be careful when you JIT, otherwise you might end up like me

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +5

      i have heard taht many young men suffer with JIT issues

  • @MrRecorder1
    @MrRecorder1 Год назад +10

    Hey... Some input from a Python dev here. I had to develop and algorithm that copies together some images in memory with some rudimentary scaling applied, something that was not really possible via a standard library. It was okay but not fast enough in Python+Numpy - something in the ballpark of 5-10 ms. So I dusted off my C++ knowledge, thougt really hard about data structures. Realized that I could do some trickery with memory remapping and that 5-10ms operation became... microseconds pretty much. It was mad. 1000x optimization. Best case was 100ns because no memory had to be copied (which was the only way to do it in Python) but it could be virtually relocated so "moving" an image from one place to another became a mere update to a pointer (sortof... mmap is cool). I totally forgot how fast C++/machine level code can be if you know what you are doing. Lol

    • @jabadahut50
      @jabadahut50 Год назад +2

      tbf... python is also a crap load slower than even javascript. Python is one of the SLOWEST languages out there. it is the king of easy to learn languages... but it sacrifices almost everything in terms of speed for that simplicity.

    • @overPowerPenguin
      @overPowerPenguin Год назад +2

      @@jabadahut50 Yes it slow, but the best it has libraries that are written in C / ++ and works at near-native speed. It is also great for prototyping and automation.

    • @jabadahut50
      @jabadahut50 Год назад +1

      @@overPowerPenguin to be clear, I wasn't hating on python. It's in my opinion the best intro language for anyone who has never programmed before, and it is still king in data science. Also, it's getting the MOJO superset soon. Soon as that comes out, I'm probably going to pick it up myself.

    • @Komatik_
      @Komatik_ Год назад

      @@jabadahut50 MOJO?

    • @jabadahut50
      @jabadahut50 Год назад

      @@Komatik_ MOJO is going to be to python what Typescript is to JavaScript. Everything written in python is valid MOJO code, but not all MOJO code is valid python. It makes python a LOT faster.

  • @Joe-xr2xl
    @Joe-xr2xl Год назад +6

    This also ignores how c++ could be optimized further with things like const and pure attributes if he uses gcc. It also ignores the fact if it was a simple expression you could also write it to be constexpr to let the compiler do all the math for you.

  • @J0R1AN
    @J0R1AN Год назад +5

    He somehow always turns it into a Rust ad

  • @Kavukamari
    @Kavukamari Год назад +15

    as a youtube watcher, it doesn't matter to me how fast javascript is, because I can just play the video at 4x speed to make up for it :)

  • @nandansharma3923
    @nandansharma3923 Год назад +3

    v8 engine itself is written in C++, not JS.

  • @NuncNuncNuncNunc
    @NuncNuncNuncNunc Год назад +1

    Integrals?
    @4:00 The C++ code was all run without any mem allocation after initial setup, no? Is it a test of memory access speed. Is JS code operating on an array or a Buffer. Are JS Buffers efficient for anything other than ints? Key point is that it is NOT always allocation and garbage collection. Access patterns can effect performance. If operations are done sequentiall for each element of several column vectors, it matters whether the matrix is stored by column or by row. By column, you may have a cache miss per operation.
    Port what works, optimize what's needed. If a compiler will improve your code let the compiler do it first before you meddle with it.

  • @jazzochannel
    @jazzochannel 2 месяца назад

    0:52 nah dawg. the most told story in the programming world is hello world.

  • @oskrm
    @oskrm Год назад +6

    "why JavaScript is awesome" - prime 😲🤯

  • @bkucenski
    @bkucenski Год назад +23

    The advantage of JavaScript is immediate feedback. It's a good place to start learning to code, but if you're serious about game programming, you'll want to take what you learned over to a compiled language.

    • @PanosPitsi
      @PanosPitsi Год назад

      I love how you act making video games is more important that real world applications.

    • @bkucenski
      @bkucenski Год назад

      @@PanosPitsi I said it's not a great game programming language if that's what you want to do

    • @somenameidk5278
      @somenameidk5278 Год назад +1

      ​@@PanosPitsiplenty of real world applications are performance sensitive, also video games are a massive industry

  • @gustavbw
    @gustavbw Год назад +1

    I saw some people discrediting the benchmarks because they were from a game development standpoint. To those people I say one thing: You'd be surprised how many fields of software engineering game development covers - especially online games. And you'd quake (heh) in awe when you realize that most of the technologies you take for granted like streaming a movie from your couch at night comes from the (sometimes) insane requirements and standards of game development.
    Also you guys completely missed the point. The benchmarks was of basic math operations and computers are build to do exactly that. So if your language does math bad, it bad.

  • @KeplerEmeritus
    @KeplerEmeritus Год назад +2

    Funny that you mentioned Microsoft and JScript.
    I was implementing some tools at work for us to use in JScript that interacted with COM/ActiveX Objects and the Active Directory.
    Then I discovered some Node.JS packages with bindings for those tasks and I was able to avoid JScript and Windows Script Host 😂
    With that being said, JScript and WSH were actually interesting to look at. An ancient relic far ahead of it’s time to be honest.

  • @domemvs
    @domemvs Год назад +2

    1:27 missed opportunity: "blazingly fast"

  • @BusinessWolf1
    @BusinessWolf1 Год назад +5

    Js may be 100 times slower than C++, but it is 100 times more easily usable

  • @dantenotavailable
    @dantenotavailable Год назад +2

    Transliterations can be fine but you have to do them both ways. e.g. Write JS code, transliterate to rust, rewrite idiomatically in rust, transliterate to JS.

  • @cubbucca
    @cubbucca Год назад +7

    I made a few games in JS, I think the biggest time waster is debugging.
    4x slower to run 20x slower to code.

    • @hamm8934
      @hamm8934 Год назад +9

      THIS.
      I’m not convinced JS is faster to write at scale. The amount of wasted time debugging and tracking down outlandish bugs is wild.

    • @DipsAndPushups
      @DipsAndPushups Год назад +1

      Exactly

    • @DipsAndPushups
      @DipsAndPushups Год назад

      ​@@hamm8934exactly

  • @Omnifarious0
    @Omnifarious0 Год назад +1

    Your comment about allocation is a good one. Testing out mathy inner loops isn't really going to give you a good idea of the relative speed of two languages, and the "JITs will just get better" is misleadingly true. There's an S curve of performance improvement, and further improvements are going to be tiny. The easy things have been done, and the hard things are nearly impossible.

  • @daneparchmentjr
    @daneparchmentjr Год назад +23

    Ngl, over the years i've been distancing myself from content creators on youtube. As a front-end engineer, I'm constantly being told how shitty my language is, how front-end isn't all that and real programmers work on the back-end or systems level work. How, everything I do is easy and just for playing around. Frankly speaking it's condesending and discouraging, I've loved your channel because I found it entertaining, but over the last year it seems any opportunity you get to shit on javascript or front-end you will.
    I'm not saying stop, your videos are still informative and clearly entertaining, but it's getting tiring being the butt-end of jokes and toxicity from the development world. I deal with that enough outside of work.
    I dunno...maybe I'm being weird and looking into things harder than I should be.
    Keep being Blazingly Fast!

    • @rudrarana526
      @rudrarana526 Год назад +8

      Nah bro i am with you. There's just too much animosity for the front end developers on sites like this. Just find better people

    • @bakeneko3993
      @bakeneko3993 Год назад +10

      I don't think Prime really shits on front-end development tho.
      And about how shitty "your" language is, you shouldn't take it personally. A lot of us code in "shitty" languages bc we have no other choice, and we blame the game, not the player.

    • @daneparchmentjr
      @daneparchmentjr Год назад +4

      ​@@bakeneko3993 I don't think Prime directly shits on front-end, but in many subtle ways it seems like he, and many of his viewers think they're better than front-end devs. I can be reading this wrong and I don't mean to imply malice on anyone, it's just that whenever he brings up front-end there tends to be conversation around how easy it is to get into compared to back-end. And while it may definitely have a lower skill floor, the conversation sometimes come off as beginners do front-end while advanced devs do back-end.
      As for the language, it's not that I have some personal attachment to the language, it's the volume of hate. It seems anywhere you go, people will just shit on JavaScript. Very rarely does this channel bring up JavaScript in a positive light. And when all you see everywhere you go is negativity surrounding the tools you use, its starts to feel like a reflection on you (so maybe I am taking it personally).
      So I don't know, again, I'm probably just jaded. But when you, your field, and the tools you use are constantly being belittled everywhere, it just gets tiring. Then you see videos like these that just add more fuel to the fire and it's not helpful. Like we get it, JavaScript/Typescript aren't perfect and aren't rust. But like even the positive stuff are covered in condescending tones: V8 made a shitty garbage language, a fast garbage language. Or if Typescript introduces a great change for front-end devs, it's: But it doesn't do it the way other language do it, so it's not as good.
      We can't seem to win or catch a break.

    • @turolretar
      @turolretar Год назад +6

      Frontenders are just subpar humans in general, you just proved it again.
      Jk jk, unless ?

    • @lazyh0rse
      @lazyh0rse Год назад +4

      At least he's not comparing javascript with java, I would be seriously pissed off. But he actually have good points for comparisons unlike other people who shits on frontend with no real reason. He also approaches it from someone who actually cares about maintenance, which is a valid point imo. It doesn't matter how fast the language is if you can't maintain the code. I dislike that he uses rust as a good example, but I haven't used rust, so I can't judge. I used C#, Java, and some other bloated languages which made maintenance 10x harder than Javascript. So it's a hard sell tbh.

  • @dominikliberda4017
    @dominikliberda4017 Год назад

    The issue with these comparisons is that they are usually done by people who dont understand performance.
    The C code could have been compiled with -flto, -march and -mtune to get a bunch of free performance.
    Especially -march would make a big difference on the first example, since compiler could easily vectorize the loop.

  • @thomassynths
    @thomassynths Год назад +6

    How Slow Is Python?
    (Hint: It's abysmal, but dev time is ok!)

    • @th.araujo
      @th.araujo Год назад +2

      a simple for in python is unbelievable slow

    • @Alexey-gp7vc
      @Alexey-gp7vc Год назад

      Python's performance depends entirely on the tasks and libraries.

    • @theshermantanker7043
      @theshermantanker7043 Месяц назад

      Not for much longer. Python is getting the same performance love that Java got for the last 20 years now. It probably won't be as fast as C or other native languages, or even Java itself, but it'll be way faster than it currently is soon enough

  • @IndellableHatesHandles
    @IndellableHatesHandles Год назад

    Fun fact: That comment at the start - the first one to pop up - was mine. Admittedly, I was being sarcastic, and I told the original creator about that when he released the video, and he seemed amicable.

  • @ondrejsova229
    @ondrejsova229 Год назад +2

    you are terrified to the bone (of maths) if you see cursive f as an integral :) but I get it.

  • @Bolpat
    @Bolpat Год назад +1

    In this day and age, C++'s inline isn't even a hint. It signifies to the linker: This function may be defined multiple times. That's it.

    • @theshermantanker7043
      @theshermantanker7043 Месяц назад

      Not true. gcc and LLVM absolutely use it in their heuristics when calculating whether to inline code. That said, I do wish inline actually force inlined code and wasn't just a hint

    • @Bolpat
      @Bolpat Месяц назад

      @theshermantanker7043 I guess most compilers have a separate attribute for that.

    • @Bolpat
      @Bolpat Месяц назад

      @theshermantanker7043 Also, you don't seem to be aware that sometimes in C++, inline is implicitly present, e.g. for in-class definitions.

  • @Cyberfoxxy
    @Cyberfoxxy Год назад +3

    I'd like to see js bindings to some gui stack. A stack that is not fucking electron. Something like NodeGTK but cross-platform.

  • @vitiok78
    @vitiok78 Год назад

    Batman's parents'death history and JavaScript history...

  • @freeruninja
    @freeruninja Год назад +1

    Most told story is about Linux being written over winter break

  • @ingframin
    @ingframin Год назад +2

    BTW, Oracle introduced a low latency garbage collector for Java 20. I wonder whether something similar could be added to V8 for JavaScript.

    • @ko-Daegu
      @ko-Daegu Год назад +2

      java 20 bff can't wait for java 69

    • @theshermantanker7043
      @theshermantanker7043 Месяц назад

      Not just 1 Garbage Collector mind you, but 2. Z and Shenandoah are both absolute powerhouses

  • @zeasdz
    @zeasdz Год назад +1

    Hey Primagen, I heard you dealing some JIT?

  • @halisterfernando9160
    @halisterfernando9160 Год назад +2

    Nice to see that someone with certainly more experience than me found typing in typescript a pain! I learned how to do the basic to build a Rest API using TS, but last week I was trying to build a web scraping using TS and I've dropped it! The exactly same code using cheerio library using JS was working fine but in TS kept showing a stupid type error, I've tried about 5 different types for the same property but it didn't work!!!! I'm aiming to be a front-end, but I'm in love with programing in general, so other type languages aren't that painful to code? I just know JavaScript and a bit of Python.

    • @nerdError0XF
      @nerdError0XF Год назад +1

      Sounds really weird tbh
      Can you provide some details?

    • @halisterfernando9160
      @halisterfernando9160 Год назад

      @@nerdError0XF I don't have the code anymore, I ended coding using next js with JavaScript instead because my deadline to do it was till yesterday, it was a technical challange for a job application , even chat gpt couldn't help me with the correct typing LOL, I was using Cheerio and couldn't type it correctly, but then I changed to JavaScript and Puppeteer Cluster would be more appropriate for what I was trying to do.

    • @SimonBuchanNz
      @SimonBuchanNz Год назад +1

      Type errors when the untyped code works fall into a few different camps:
      * The types for the library you're using are crap. Very common. Patch the types and submit a PR, I guess?
      * You do actually have a type error, but only in exceptional circumstances. This is often just adding a not null assertion (!) or adding a basic guard condition so typescript knows you're not in one of those.
      * You or the library are mixing together features that confuse typescript, for example overloading and parameter extraction. Often not much you can do in these cases other than ugly casting or repetitive code, but it's pretty rare.
      * You've actually found a situation that Typescript doesn't support. There are a few of these, but they're often getting into incredibly complex typing situations. The most common one I hit is parametric values, eg you know each item in an array has a function to create a value and a function to accept a value of the same type, but the type can be different for each item.

    • @halisterfernando9160
      @halisterfernando9160 Год назад

      @@SimonBuchanNz it makes sense, I need to get used to typescript, I've been refactoring some old projects recently and didn't had a chance to play with TS again. I'm currently striving to build my portfolio web page and maybe I'll do it using TS along next js as soon as I finish styling my recipe app

    • @PanosPitsi
      @PanosPitsi Год назад +4

      Types are not painful trying to debug a 600 line error that happens once a week is way worse. Also, you can type :any and it will ignore types.

  • @smnkumarpaul
    @smnkumarpaul Год назад +1

    Javascript was not build to conquer the world, but it did it anyway. Only compititor it had at it's core domain was Java Applet, but life is too shot to write code in Java so JavaScript it is.

  • @petemoss3160
    @petemoss3160 Месяц назад

    13:45 MISS MONIQUE SPOTTED!

  • @MrEo89
    @MrEo89 Год назад +1

    The irony is I didn’t see a single integral in that whole frame 😂 those “f’s” definitely look like the integral symbol tho.

  • @BrazilMentionedHueHue
    @BrazilMentionedHueHue Год назад +2

    Bro, JIT is natural, saw some awesome gains on my code last week

  • @thedelanyo
    @thedelanyo 10 месяцев назад +1

    This is 11 months old, js has grown and is mow blazingly slower 😅😅😅

  • @michawhite7613
    @michawhite7613 11 месяцев назад +1

    Worth pointing out, just because it's faster now doesn't mean it's not bad anymore. I don't care how fast your Brainfuck compiler is, I'm still not gonna program in it.

  • @MungeParty
    @MungeParty 10 месяцев назад

    Pooling yep, you called it.

  • @Canonfudder
    @Canonfudder Год назад

    Emscripten? Wasm? And you can use object pools in js?

  • @dus10dnd
    @dus10dnd Год назад +1

    I hear that turtle's on JIT are pretty close to me on amphetamines!

  • @Languagist
    @Languagist Год назад +2

    What about JavaScriptCore? Bun's team used JSC.

  • @heron619
    @heron619 Год назад +11

    I think the problem people have with JavaScript is not it's speed. It's the fact that it's JavaScript!

  • @StefanNikolovski
    @StefanNikolovski Год назад +3

    Miss Monique set, you sir have my respect

  • @jamesbest3347
    @jamesbest3347 Год назад +8

    There's like a bunch of raycasters in javascript canvas. It's not that slow.

  • @tedchirvasiu
    @tedchirvasiu Год назад

    1:36 - clipped, there, he said it

  • @ko-Daegu
    @ko-Daegu Год назад +1

    with this logic let's test Pypy (JIT) and also cython for python and woah python is super duper fast as well let alone most lib are in C/C++ so you are invoking C/C++ and sometimes Assembly code

  • @houstonbova3136
    @houstonbova3136 Год назад +4

    Yeah don’t use JIT stick with AOT it’s more natural and better for your mind and body 😅

  • @willtheoct
    @willtheoct Год назад

    4:00 well dont allocate or deallocate. That's not very C style.
    Here's the javascript benefit:
    var x={}
    x.y=1.0
    100ms and blocks multiple threads
    ez win for js

    • @enzoqueijao
      @enzoqueijao Год назад

      What the actual fuck is this

  • @zugdsbtngizudsgbnudsdsoiu
    @zugdsbtngizudsgbnudsdsoiu 7 месяцев назад

    Ive just build a crawler/scraper in nodejs which makes heavy use of xpath and because it was slow I had to implement it in PHP which was at least 10x faster (xpath nodejs ~50ms, php8.2 0.025ms, 1 expression) and I did not need any external libraries.

  • @xBZZZZyt
    @xBZZZZyt Год назад

    04:53 YES, v8 seems too not gc enough
    if you have node/deno long running script and you have code to report bad performance (like logger) call gc() in there (need --expose-gc)

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +2

      manually running gc almost exclusively makes worse performance

    • @xBZZZZyt
      @xBZZZZyt Год назад

      @@ThePrimeTimeagenthere is big lag spike when gc() and program is fast again

  • @kooraiber
    @kooraiber Год назад +2

    Can you put a link to the video you reacted to in the description please?

  • @skrundz
    @skrundz Год назад

    I'm about to overdose on JIT, Copium, and PCBs

  • @bundlesofun9568
    @bundlesofun9568 11 месяцев назад

    I re-watched the "fast maths"... there wasn't an integral in sight sir 😬

  • @philiposdrontzas3725
    @philiposdrontzas3725 Год назад

    Was this video live few days ago, then unlisted and then published (today)?

  • @TheBrazilRules
    @TheBrazilRules Год назад

    I would imagine the shader test would be pretty similar considering that is computed on the GPU, but somehow it is not?

  • @mainendra
    @mainendra Год назад +1

    There no one thing for all. Not all time you need speed. Some time you need different things. Because of that different programming languages exist 😊

  • @AppleGameification
    @AppleGameification Год назад +1

    Wtf are those comments at the start of the video? Are they real? How are people so mad about a programming language?

  • @mina_en_suiza
    @mina_en_suiza Год назад +17

    I still like Larry Wall's approach: Programmers' time is more valuable than RAM or CPU.
    For any real life application (not high performance gaming or simulating the behaviour of plasma in a fusion reactor), only the order of complexity truly matters. If a compiled version is 10X faster than an interpreted version of an implementation: So what? Computers are faster than the user, anyway. But the fact that writing down something in JS or Python is usually done in the 10th of the time that you would need to implement the same stuff in C++ or Rust, does matter.
    However: From my personal observation, if you're dealing with a high number of datasets in JS, don't encapsulate them in objects! Use simple arrays, wherever you can. Going through the abstraction layers actually increases the complexity of the program in JS (though not in compiled languages like C++).

    • @brainsniffer
      @brainsniffer Год назад +7

      I agree if we’re talking small to medium businesses with applications on end user pcs, but the hyuge internet world like the amazons or Netflix servers, 10x is having to buy 10x fewer servers, power, etc. It really depends on the scale you’re working in. That said, even at my small scale, 1 minute vs 10 minutes to get an answer saves someone going for coffee three times a day.

  • @kashnomo
    @kashnomo 10 месяцев назад

    SimonDev is a fantastic channel.

  • @JordanShurmer
    @JordanShurmer Год назад

    Byn ftw

  • @someone-jq3lc
    @someone-jq3lc Год назад +1

    JavaScript is blazingly fast

  • @acters124
    @acters124 11 месяцев назад

    3:12 not a single integral? lol

  • @fullrulle77
    @fullrulle77 6 месяцев назад

    Js was strongly influenced by the language Self that was shown to be fast, or possible to optimize a lot. Look it up.

  • @thekwoka4707
    @thekwoka4707 Год назад +1

    JavaScript core is actually faster than V8 in tons of ways.

  • @dzisonline
    @dzisonline Год назад +1

    V8 is why JS is awesome but shouldn't it also get some of the blame for the weird performance of JS?

    • @dzisonline
      @dzisonline Год назад

      Or did they just optimize the code that already existed without affecting how it works?

  • @Julianacan
    @Julianacan Год назад

    i looked at the magic, i really like looking at the magic alot

  • @WizardofWestmarch
    @WizardofWestmarch Год назад

    You say can't be upset. I'd argue it's upsetting they didn't put the time into optimizing a better language

  • @pollo_cesar_
    @pollo_cesar_ Год назад

    Agree totally with the slow there is to write a lib in typescript.

  • @erickmoya1401
    @erickmoya1401 Год назад +7

    I think you have the wrong take on how "hard" is to write those complicated operations and those "stupid typing that you have to do" with Typescript.
    The think with JS without TS is that you cannot tell if you did it right, you think you did, but as time tells us, code in Javascript is always wrong, and the worst part is we know that when the code is already in production.
    Typescript can be far better, I give you that, but JS code is 99% of the time ready to break with the smallest change. It always works at first try, but you need the smallest change to break everything.

    • @well.8395
      @well.8395 Год назад

      When you don’t know how to write proper javascript you spit out shitty comments like these. Typescript doesn’t work in browsers, it’s just Javascript. I have a sharded nodejs cluster (70K LoC) that gets 800k requests per day and a rust microservice (25k LOC) deployed that gets around 100k hits per hour. None of those broke on production.
      Guess what? Its you who doesn’t know how to write proper Js. Tons of software was shipped before typescript existed.
      React was 100% javascript before 2018. They had to enforce typescript because of people like you in their team. They simply don’t learn to be better, all they need is some kind of helper tool to help assist them in every thing

    • @Barnardrab
      @Barnardrab Год назад +1

      Very true. I think loose typed languages are a liability.

    • @nieczerwony
      @nieczerwony Год назад

      ​@@Barnardrab They are not if someone have experience with statically typed language. If someone has started their coding with scripted language like JS then God save him.

    • @Barnardrab
      @Barnardrab Год назад +1

      @@nieczerwony My first 2 programming languages were Visual Studio and then Java. They were intuitive to me but I had a hard time picking up JavaScript.

    • @nieczerwony
      @nieczerwony Год назад

      @@Barnardrab My first were assembly and C/C++. Then Java. JS was easy for me and it has its use for sure. I think biggest issue when it comes to JS are the libraries as people try to focus on using them rather then understanding the basic JS.
      Like people going mad about full stack today and stuff like React +Node.y first stack was LAMP and I should still prefer PHP over Node, but from let's say IoT perspective Node is way better for "real time" over network solution.
      As engineer I learnt that we just need to pick a tool for specific task, and I don't demonize any of it.
      I always like to learn new things and solutions.

  • @conceptualdeveloper
    @conceptualdeveloper Год назад

    Normal comparison in general,,🤣😂Garbage collection🐞

  • @quelchx
    @quelchx Год назад +10

    JS lacks performance (speed if we measure it) but least it makes up for it in productivity. I personally use a few languages (JS included) and the way I view it -- use JS for what you need it for.
    Example I work for a small start up with few employees, we don't have a bucket ton off money but hell we can pump out what our clients need -- bring in developers that can pick up on the codebase really quick and at the end of the day it does the job we need to do.
    Sometimes I think people miss that concept when looking at the language. Sure it's being used for things it probably shouldn't be used for but that is the beauty of programming and the ecosystem developers before me have created.

    • @jonphinguyen
      @jonphinguyen Год назад

      This is how I feel about Python. If I just need something simple bam! Just write it in Python and call it a day

    • @maddsua
      @maddsua Год назад +3

      The workflow is: make it work in JS, then switch to an actual language. Many devs don't do the second step though

    • @NathanHedglin
      @NathanHedglin Год назад

      ​@@maddsua startups do. Usually JS -> Go

    • @quelchx
      @quelchx Год назад +3

      @@maddsua I guess the second step really depends on the project + client needs. I say this coming from my personal experience -- it depends on a lot of factors (money, delivery, contracts, etc).
      If I have a customer with a JS backend who now wants a more performant solution and that's the requirements (go faster) and it involves me getting paid than sure 😊

  • @methanbreather
    @methanbreather 7 месяцев назад

    just imagine how much energy could be saved, if we banned javascript. Energy wasted because it is slow and inefficient. Energy wasted because every single computer has to jit compile the mess every single time the crap is run. It is mind boggling.
    Nothing of worth would be lost, if we banned javascript. Apart from some ad slingers having to ressort to old school untargeted ads maybe.

  • @pro3757
    @pro3757 Год назад

    Looks like yt is recommending everyone the same channels here. Just found SimonDev yesterday, and watched hours of his vids. Same with most other recent primereacts.

  • @HiMyNameWaffy
    @HiMyNameWaffy Год назад

    Ninja turtles on roids. The times we live in. 😂

  • @homelessrobot
    @homelessrobot Год назад

    unfortunately if you do translation instead of transliteration, some test cases just stop being useful because they describe how to do something in two languages that you would never actually do in one of them. You should really do both, but don't confuse transliteration for translating when describing the relationship between results.

  • @borkware
    @borkware Год назад

    The name is.. The PrimeaJit

  • @vhaangol4785
    @vhaangol4785 Год назад

    Instant like for reacting to SimonDev's video

  • @devfriday
    @devfriday 11 месяцев назад

    Javascript can be fast but It will take your memory like a black hole.

    • @gamechannel1271
      @gamechannel1271 3 месяца назад

      What else are you using that memory for? I bet 98% of the time you spend on your phone is web browsing.

  • @GeorgeDicu-hs5yp
    @GeorgeDicu-hs5yp Год назад

    Hey, can u react to some Flutter or Dart videos?

  • @naplesnola
    @naplesnola Год назад

    Love the humor!

  • @aksaek1502
    @aksaek1502 Год назад

    Seems like many good things got a V8

  • @asagiai4965
    @asagiai4965 Год назад

    Yes, you can. It is called not adding unnecessary things.

  • @yash1152
    @yash1152 Год назад

    7:46 8:01 8:36 line by line port...
    yep, thats _STUPID_
    idiomatic translation, not verbatim transliteration
    superb

  • @maddsua
    @maddsua Год назад +5

    It's way too slow. So slow I create my own build tools in C. /thread

  • @rickross-z3j
    @rickross-z3j 11 месяцев назад

    JavaScript works as well as the person who wrote it.

  • @Barnardrab
    @Barnardrab Год назад +1

    The secondary voice is inaudible on mobile, even at max volume.