The JavaScript code is compiled to native and is heavily optimized, as opposed to being interpreted.
- 0 Posts
- 5 Comments
Joined 27 days ago
Cake day: September 9th, 2025
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
I had to deal with large JavaScript codebases targeting IE8 back in the day and probably would’ve slapped anyone back then who suggested using JavaScript for everything. I have to say, though, that faster runtimes like v8 and TypeScript have done wonders, and TypeScript nowadays is actually one of my favorite languages.
melfie@lemy.lolto Today I Learned@lemmy.world•TIL that Toys R Us wasn't killed by competition, but by private equity companiesEnglish3·7 days agoI heard a rumor that Amazon did it to dominate the toy market
I certainly would not put it past them.
melfie@lemy.lolto Programmer Humor@programming.dev•ThePrimeTime reviews Zuck's AI glasses demo8·15 days agoShow your support for surveillance capitalism and get yourself a face-mounted camera and microphone.
TS transpiles to JS, and then when that JS is executed in Deno, Node.js, a Blink browser like Chrome, etc., it gets just in time compiled to native machine code instead of getting interpreted. Hope that helps.