TypeScript 5.0 BETA IS HERE

  Рет қаралды 68,175

Matt Pocock

Matt Pocock

Күн бұрын

Пікірлер: 188
@MahbabMusik
@MahbabMusik Жыл бұрын
To me the title of this video is “how to create and consume decorators: a blazing fast tutorial” I finally got a clear explanation of decorators. Thanks Matt.
@wlockuz4467
@wlockuz4467 Жыл бұрын
TS is slowly doing to JS what Kotlin did to Java and I love every bit of it.
@akatsukilevi
@akatsukilevi Жыл бұрын
Everyone tells me about Kotlin, is it really this good?
@wlockuz4467
@wlockuz4467 Жыл бұрын
@@akatsukilevi You will notice a huge difference if you're coming from Java, but even in general its a solid language thats well thought out and modern. Same as TS and JS, you can mix Java and Kotlin so you can adapt it incrementally. Android - one of the biggest mobile platform, ditched Java and switched to supporting Kotlin as its recommended language and thats just a testament to Kotlin's qualities.
@akatsukilevi
@akatsukilevi Жыл бұрын
@@wlockuz4467 Huh, gotta start messing around with Kotlin
@SylvainPOLLETVILLARD
@SylvainPOLLETVILLARD Жыл бұрын
Decorators are stage 3 proposal in JavaScript, started in 2019. At this point it's not clear which one of TS or JS is catching up with the other.
@maxwellwellman
@maxwellwellman Жыл бұрын
Nothing?
@idonoD
@idonoD Жыл бұрын
const in generics is exactly what i've been missing on the lib i'm working on
@nowayicommented1314
@nowayicommented1314 Жыл бұрын
It’s a game changer
@kadensharpin2156
@kadensharpin2156 Жыл бұрын
It doesn't actually add any new functionality. All it does is beautify the current syntax.
@mattpocockuk
@mattpocockuk Жыл бұрын
@@kadensharpin2156 It does add new native functionality!
@kris10an64
@kris10an64 Жыл бұрын
@@mattpocockuk What do you mean by native functionality?
@gerardmarquinarubio9492
@gerardmarquinarubio9492 Жыл бұрын
Same here
@Gabriel-iq6ug
@Gabriel-iq6ug Жыл бұрын
"T const" is so geat, I can't believe I will be able to use it really soon
@sryx
@sryx Жыл бұрын
Over the last year or so, I've been coding in typescript for the first time professionally (I've been a JavaScript developer since Netscape Navigator Gold back in high school), and I feel like I am just now getting to the level where I can notice the limitations of the language and appreciate these improvements. This is a very helpful channel in putting these enhancements into some context, thank you for this valuable content :)
@TimothySmithDev
@TimothySmithDev Жыл бұрын
Great video matt. You did a much better job slowing down in this one. I love it, keep it up.
@pixobit5882
@pixobit5882 Жыл бұрын
I really love the const in generics and the decorators. It will open up so many new possibilities to write safer and cleaner code!
@anthonylord7645
@anthonylord7645 Жыл бұрын
I use decorators a lot already, but I don't know any TS dev that uses classes. I feel like they really should get decorators working on regular functions
@souzaramon9522
@souzaramon9522 Жыл бұрын
A decorator for a regular function is just a wrapper function ... function log(fn) { return (...args) => { let result = fn(...args) console.log({ args }) console.log({ result }) return result; } } log(getUserById)(12)
@avi150
@avi150 Жыл бұрын
don't need decorators if doing functional programming anyway. It's much easier to have a "function that returns a function", as easy as const getUserWithLogging = withLogging(getUser); No need of unnecessary abstractions and complications :)
@avi3681
@avi3681 Жыл бұрын
Decorators seem like a very complicated way to do with classes something that is easy to do with regular functions using composition. Am I missing something?
@avi150
@avi150 Жыл бұрын
@@avi3681 exactly! an unnecessary complication that adds no value over composition except that you’re making the composition less explicit and obvious. pretty much the ethos of all OOP, “hide things away behind so many layers that it’s all eventually a garbled mess where asking for a monkey gets u a forest”
@anthonylord7645
@anthonylord7645 Жыл бұрын
@@avi3681 I use decorators on my web api controller lib, TSOA, to easily manage a bunch of info related to the routes, like @Get(x), @Public(), @AdminAuth(x), @ResponseSchema(x), @Validate(x), etc. There's a lot of info in there. If you were to do this with regular functions and composition, it would potentially not be as readable. But if you keep it clean, maybe.
@hoots187
@hoots187 Жыл бұрын
Keep posting these videos around this time ser, much appreciated.
@dbroche
@dbroche Жыл бұрын
Dig the enthusiasm man - you strike me as a fun engineer to work on projects with
@marloeleven
@marloeleven Жыл бұрын
I really love this kind of video, not so much screen switching and I can understand you better since you are not talking too fast. more power matt!
@mattpocockuk
@mattpocockuk Жыл бұрын
Nice, that's great to know!
@NickJ953
@NickJ953 Жыл бұрын
Amazing video! Love these short vids with current updates, keep us up-to-date more, plese!
@brandonwie4173
@brandonwie4173 Жыл бұрын
Oh my const! Great improvement! 👏👏👏
@chadlewis2874
@chadlewis2874 Жыл бұрын
Great summary, Matt. Really, REALLY looking forward to your video on properly typing decorators! The beta TS release article was helpful, but left a bit to be desired. Thanks for all the awesome content ❤
@DEVDerr
@DEVDerr Жыл бұрын
Holy shit, finally no more Reflect Metadata to create a simple decorator. That's a very welcome change
@bobobo1673
@bobobo1673 Жыл бұрын
Reflect metadata?
@grgry06
@grgry06 Жыл бұрын
@@bobobo1673 reflect-metadata to be exact, it adds (or explicitly wraps) the Reflect namespace to add additional utility stuff to create decorators
@robwatson826
@robwatson826 Жыл бұрын
I'm a relatively new Typescript dev, but these changes particularly to the function generics look really cool! As your example used terms Routes and Router, it immediately springs to mind how much easier a dev would be able to write links in an app as the actual urls could be type-hinted to them!
@TheBswan
@TheBswan Жыл бұрын
Tanstack Router already has type safe routing :)
@agrittiwari5485
@agrittiwari5485 Жыл бұрын
Decorators are a really good deal. And const generics is what we could've used in our in-house but we had to seed the data and find pattern around it.
@artemeelemann317
@artemeelemann317 Жыл бұрын
Waiting for the types for decorators video! Have struggled with that too
@RobertoDuransh
@RobertoDuransh Жыл бұрын
love this video TY. ohhh and please cover this in depth in your course.
@mattpocockuk
@mattpocockuk Жыл бұрын
For sure, will do!
@re.liable
@re.liable Жыл бұрын
Coming from Python, its decorator syntax always felt like it'd fit very nicely with JS' mostly function-first approach
@karamuto1565
@karamuto1565 Жыл бұрын
Great new features I am looking forward to. 😄
@shinebayar
@shinebayar Жыл бұрын
Hope Decorator pattern is gonna encourage stabilized Dependency Injection libraries.
@alastairzotos
@alastairzotos Жыл бұрын
I use NestJS which has some great DI
@MagareLosho
@MagareLosho Жыл бұрын
Yes for decorator typing!
@MisouSup
@MisouSup Жыл бұрын
yessss, hope decorators become better and better
@nomadshiba
@nomadshiba Жыл бұрын
5:30 this is epic, i can use this for caching the results of the calls or to put stuff in queue on async calls etc many things before that you had to wrapper the thing, like getPost = log((id: string) => { ... }) which becomes ugly quickly
@bigsmarty6871
@bigsmarty6871 Жыл бұрын
"nah bro web dev isnt that stressful" his hair: are you sure about that
@marwi_123
@marwi_123 Жыл бұрын
Happy about decorators! Been using them heavily in our web engine and loving them
@DavidAlsh
@DavidAlsh Жыл бұрын
I love classes, use them all the time. Updates to decorators is welcome, looking forwards to what comes next :)
@holycrimpsauce
@holycrimpsauce Жыл бұрын
Angular’s been using those decorators since 2.0. I’m interested to see what the TS 5.0 changes will do to help the framework.
@mattpocockuk
@mattpocockuk Жыл бұрын
They've been using the experimental decorators, which are different!
@antoniogiroz
@antoniogiroz Жыл бұрын
awesome the const annotations!
@ShaharHarshuv
@ShaharHarshuv Жыл бұрын
I think the move to functional programming and ditching classes is probably a good direction and is probably not going to be reversed. Especially since the functionality you showed with decorators have been around for a while (even though it was technically "experimental").
@shaneomoore
@shaneomoore Жыл бұрын
Brilliant vid on TS 5.0, well explained as always and looking forward to the "course drop" :)
@collinslagat3458
@collinslagat3458 Жыл бұрын
Adding decorators to plain function could also be neat
@grgry06
@grgry06 Жыл бұрын
I love the new decorator syntax, much easier to implement, just wondering if calling log (with ()) does not have any side effects?
@mattpocockuk
@mattpocockuk Жыл бұрын
It would be a type error!
@grgry06
@grgry06 Жыл бұрын
@@mattpocockuk thanks!
@mortezatourani7772
@mortezatourani7772 Жыл бұрын
Hey matt Thanks for all you're sharing. (waiting for the next episode of TS challenge though :) ) You can have decorators for functions as well. I think you can create a memoize hook but no linter supports it so no one will tell you when for example you forget some dependency. It's been lovely to see you, too :)
@mattpocockuk
@mattpocockuk Жыл бұрын
Not the new decorators! They only work for classes, not for individual function calls.
@DioArsya
@DioArsya Жыл бұрын
Const annotations will be very awesome haha
@rashidaz1582
@rashidaz1582 Жыл бұрын
Thank you Matt for your hard work!
@RomanOstolosh
@RomanOstolosh Жыл бұрын
Can't wait for the video on decorators. Struggle with typing them properly. Especially I have issues with inability of typescript to infer the result of a decorator or at least error on me if there is a mismatch. Or it seems I might just be missing something in understanding.
@hicoop
@hicoop Жыл бұрын
Awesome video. Look forward to using this in prod!
@beratsulimani9823
@beratsulimani9823 Жыл бұрын
Love it Matt, many thanks for those brilliant video that you are serving to us... 😍😍😍
@mahadevovnl
@mahadevovnl Жыл бұрын
Love it when standards prevail. Can't wait to finally start using decorators. That said, don't they also work for functional components? Or just for class methods and classes? Because in a React functional component, I'd probably want to use decorators on even anonymous functions.
@mattpocockuk
@mattpocockuk Жыл бұрын
Just class methods and classes AFAIK!
@ScorpioneOrzion
@ScorpioneOrzion Жыл бұрын
@@mattpocockuk Do you think their is a way to get around this?
@adambickford8720
@adambickford8720 Жыл бұрын
@@mattpocockuk from that release: "Decorators can be used on more than just methods! They can be used on properties/fields, getters, setters, and auto-accessors. Even classes themselves can be decorated for things like subclassing and registration."
@mattpocockuk
@mattpocockuk Жыл бұрын
@@adambickford8720 Sorry, yes - I meant all aspects of classes, not just methods. Thanks for the clarification!
@magnuslator4719
@magnuslator4719 Жыл бұрын
I really love the decorator part
@hundvd_7
@hundvd_7 Жыл бұрын
3:30 100% agree, that is fucking huge
@dopetag
@dopetag Жыл бұрын
We need that decorators video :)
@horrorintake995
@horrorintake995 Жыл бұрын
Mostly code in functions so seeing class always bring me down a little bit, but can't wait to see how typescript add spices for class!
@industry_std
@industry_std Жыл бұрын
I remember seeing someone implementing decorators by hand and thinking: if only there was a better way.
@RaphaelAlejandro
@RaphaelAlejandro Жыл бұрын
I barely know how to use the basics, but I appreciate the improvements. I'll get there and become a "wizard" one day. :p I'll check your course.
@SwimCraft
@SwimCraft Жыл бұрын
const generics seems like a huge game changer, I already know a couple places in the codebase I work with daily that could use it
@hugodsa89
@hugodsa89 Жыл бұрын
Decorators ❤
@gabrielcarloto3300
@gabrielcarloto3300 Жыл бұрын
holy im hyped to const in generics
@nomadshiba
@nomadshiba Жыл бұрын
people dont realize how powerful classes are in my opinion best thing about classes is the `instanceof` keyword which lets you check "types" in runtime which is a super power if you ask me it has no alternative
@charetjc
@charetjc Жыл бұрын
people don't realize how overrated classes are, imo.
@adambickford8720
@adambickford8720 Жыл бұрын
Decorators (annotations) are absolutely huge java and fundamentally change the way you code. I'm really curious to see how this hits the TS community.
@RatonBroyeur
@RatonBroyeur Жыл бұрын
This is a cool concept but... It's also a good way to obfuscate a lot of things and to loose a lot of readability in your code. Really not my prefered feature ^^
@pacifico4999
@pacifico4999 Жыл бұрын
@@RatonBroyeur true, they are good if you keep it simple. But I've seen too much decorator abuse in the wild
@aaronmcadam
@aaronmcadam Жыл бұрын
This was brilliant, much better paced ❤
@hungify
@hungify Жыл бұрын
Thank you explained
@seykim
@seykim Жыл бұрын
first time i heard someone say "roooter". great vid btw 👍
@nbaua3454
@nbaua3454 Жыл бұрын
Bro you're simply amazing 😍.. keep more videos like this coming.. I will like to see some on nestjs if you can.. thanks again
@nro337
@nro337 Жыл бұрын
Great video!
@ragnus78
@ragnus78 Жыл бұрын
I agree the const in generics is an useful feature, but worry this syntax is not very self-descriptive at all.
@TheD0b1
@TheD0b1 Жыл бұрын
Matt, you should make TS certificate!
@michakalinowski5101
@michakalinowski5101 Жыл бұрын
I mean, the decorators were there for a long time now I don't see why it should change the way people write code nowadays. I personally love using decorators and writing oop. The only thing that bothers me is how the new syntax will be introduced. Will it live together with the current one for some time or it will be a massive breaking change?
@mattpocockuk
@mattpocockuk Жыл бұрын
Frameworks that rely on the old decorator syntax will have to migrate, that's for sure. But this is coming from JS itself, not TS. The experimental decorator syntax was basically added to TS after pressure from Google - because Google came super-close to creating their own version of TS JUST so they could use decorators in Angular. But after TS added support for them, TS saw huge adoption as part of angular. But now folks have realised the problems with the experimental syntax, and we've reached a new, better proposal which is going to be part of the JS language natively. The experimental syntax lost, so it needs to be phased out.
@jeromealtariba7339
@jeromealtariba7339 Жыл бұрын
​@@mattpocockuk but as mentionned in a previous comment, there are still only available for classes, class methods and I assume class method properties... So still need to do function wrapper for anything else... That's uggly option in my opinion compare to decorators
@mattpocockuk
@mattpocockuk Жыл бұрын
@@jeromealtariba7339 I imagine there's a proposal out there to add them!
@ozchinesefriendship4316
@ozchinesefriendship4316 Жыл бұрын
const generic is amazing!
@RomanOstolosh
@RomanOstolosh Жыл бұрын
Would be nice to see some new syntax for function decorators. Seems like currently we have to do it the old-fashioned way
@codetin
@codetin Жыл бұрын
看着发量就知道.绝对的专家级程序员
@bradenborman4396
@bradenborman4396 Жыл бұрын
Spring/Java dev here - I hate how it’s called “decorator” in my world it’s been a thing for quite some time and it’s just called annotated. I literally did the same logic to simplify the logs in have Java on a rest service 3 years ago! Haha how funny!
@Brianjaden
@Brianjaden Жыл бұрын
hey sir do you have a typescript course
@mattpocockuk
@mattpocockuk Жыл бұрын
Here you go! totaltypescript.com/
@Brianjaden
@Brianjaden Жыл бұрын
@@mattpocockuk thank you sir
@НиколайКотиков-й4у
@НиколайКотиков-й4у Жыл бұрын
Thanks for the video! I'm curious what's the future of all projects that rely heavily on experimental decorators? For example Nest.js and its plugins
@mattpocockuk
@mattpocockuk Жыл бұрын
I imagine they'll have to migrate, but experimental decorators aren't going anywhere. So it would be great if they do migrate, but they don't have to.
@marcelor1235
@marcelor1235 Жыл бұрын
So you are telling that my beautiful code, wich I have improved over last month can be even shorter with decorators? Thanks for the tip!
@wfl-junior
@wfl-junior Жыл бұрын
Please bring the video about decorators :D
@ajgubi19
@ajgubi19 Жыл бұрын
Please mention the relevant TS doc links in description.
@Palundrium
@Palundrium Жыл бұрын
Hm. Interesting with decorators being able to log the name of a function. Obviously it's necessary but I was recently searching for a way to get the name of a general function and there was almost no way that wasn't terribly hacky. At least there is now for methods with decorators.
@_fudgepop01
@_fudgepop01 Жыл бұрын
ooo those decorators are REALLY interesting! They kinda remind me of some simple macros in Rust, and I could *absolutely* see them being used in tandem with testing frameworks. Is this a fair comparison? :o
@helleye311
@helleye311 Жыл бұрын
I was looking for some way of inferring const types last week. would've saved me a lot of hassle with my custom list component for trpc that accepts any router with specific input declaration. I kept running into query key mismatch since trpc query keys are constants, couldn't assign "[string, {page:number....}]" to "[company.all, {page:number...}]". I'm pretty sure const key inference would have fixed that. I managed to slap together some magic to make it pass either way, and I doubt it would be useful to have a specific key in this particular scenario, but I can see the possibilities aplenty! bummed that decorators are only for classes. Still waiting for a language that has decorators as easy to use as python for plain functions.
@HappyCheeryChap
@HappyCheeryChap Жыл бұрын
I've been wondering... why can you only assign decorators to class methods? Why not regular loose/top-level functions too? (not in a class)
@mmmike3426
@mmmike3426 Жыл бұрын
Niiiice!!
@carlosricardoziegler2650
@carlosricardoziegler2650 Жыл бұрын
Amazing :)
@AndreiVolkov-ce1ue
@AndreiVolkov-ce1ue Жыл бұрын
Why “any” and not “unknown” for decorator example?
@GilEpshtain
@GilEpshtain Жыл бұрын
enums are great :-)
@davidfonseca698
@davidfonseca698 Жыл бұрын
NestJS use a lot of decorators
@FlaviusLacatusu
@FlaviusLacatusu Жыл бұрын
weren't decorators already in typescript though ?
@zachariahtatman7381
@zachariahtatman7381 Жыл бұрын
not gonna lie, i am learning javascript now and seeing all this typescript makes my brain hurt!! all these types i am used to seeing in java but i cant quite understand the syntax when it comes to TS. Are there any free resources you recommend or have used yourself to learn TS??
@mattpocockuk
@mattpocockuk Жыл бұрын
totaltypescript.com has a free beginners course!
@nomadshiba
@nomadshiba Жыл бұрын
2:04 i wonder if i can use this with the template syntax like html`${foo}` function html(htmls: H, values: ValuesFromHtmls) so i get the type ['', ''] instead of readonly string[]
@ScorpioneOrzion
@ScorpioneOrzion Жыл бұрын
Just wondering what is the type of ValuesFromHtmls, just to test it? and the full function html?
@nomadshiba
@nomadshiba Жыл бұрын
​@@ScorpioneOrzion i was checking the string literals and if they are ending with `
@weirdwordcombo
@weirdwordcombo Жыл бұрын
AFAIK the ecmascript decorators are less powerful than the experimental decorators we've all been using so far. i heard things like reflect-metadata library dont work with the official decorators or something like that
@mattpocockuk
@mattpocockuk Жыл бұрын
Yes I think the pieces of the experimental decorators are spread out over a couple of ES proposals
@EthanStandel
@EthanStandel Жыл бұрын
I think decorators aren't really giving us anything of value because you could just as easily turn that method into a function and then you can create a function that takes callbacks and does something similar... with the bonus that wrapping functions in functions is actually statically analyzable so you can actually make typesafe wrapper functions that, say, only accept functions with a string as their first argument or something.
@mattpocockuk
@mattpocockuk Жыл бұрын
These decorators _are_ statically analyzable! I'll do a video on getting them typesafe soon.
@EthanStandel
@EthanStandel Жыл бұрын
@@mattpocockuk that does make me more curious! The original TS only decorators weren't, right?
@echobucket
@echobucket Жыл бұрын
Why do decorators presume Classes? Can' t you decorate a regular function?
@xiandnico
@xiandnico Жыл бұрын
that have no purpose
@MatthewHorne88
@MatthewHorne88 Жыл бұрын
const T 🤟
@tryhuma
@tryhuma Жыл бұрын
do new decorators modify type of decorated method accordingly to type changes they make?
@mattpocockuk
@mattpocockuk Жыл бұрын
No, they don't!
@rohitkharche7562
@rohitkharche7562 Жыл бұрын
Auto complete and fixed routes defining hell yeah!! I was debugging a invalid route for hours. Thankfully it will not happen again with this trick in typescript 5.0 👌
@Glinkis
@Glinkis Жыл бұрын
Does const in generics solve the issue where using T for a function argument return type still allows you to specify values not on T?
@mattpocockuk
@mattpocockuk Жыл бұрын
No, I wouldn't characterise this as an issue to begin with.
@stereocodes
@stereocodes Жыл бұрын
got most of this but im not sure I know what a ROOTER is.
@Saturn2888
@Saturn2888 Жыл бұрын
I'm fine with leaving classes in the dust. All those decorators do is add a ton of confusing indirection. I get _why_ they exist, but I never liked it C#, and I really don't like it in TS.
@darkarie
@darkarie Жыл бұрын
Can you hover on the decorator to see what is the content of it? or can you use go to definition to the decorator code?
@static-san
@static-san Жыл бұрын
To be honest, I have mixed feelings about decorators. I understand the type of problem they're intended to solve, it just feels it needs some finessing, not least of which is to cleanup those anys. At least they look a lot easier to do local decorator functions. One of the problems I have with decorators in Java is how they're everywhere. This strongly suggests a language feature taken far far past their original envisaged use which usually means they're filling a need the language doesn't otherwise meet.
@mattpocockuk
@mattpocockuk Жыл бұрын
Yep! You can clean up the any's, I'll show how in a future video. They're actually perfectly type-safe, I can't find any way to break them at the moment.
@kylemckell9096
@kylemckell9096 Жыл бұрын
Out of curiosity, why doesn't this change your opinion on enums?
@mattpocockuk
@mattpocockuk Жыл бұрын
I still don't really like that you have to import an enum to be able to use it. I don't like that I can't pass LogLevel2.DEBUG to LogLevel. I like my typings structural, not nominal. Also, const enums are still terrifying.
@DryBones111
@DryBones111 Жыл бұрын
I feel like adding decorators is a dangerous step back down the path of aspect oriented programming.
@JEsterCW
@JEsterCW Жыл бұрын
Hey :D
@austincodes
@austincodes Жыл бұрын
Decorators remind me of C#
@anhdunghisinh
@anhdunghisinh Жыл бұрын
nah, i will stick with functional, dealing with 'this' is already one thing to concern, then the way we write decorators is so complicated and unintuitive when compare to hooks, much more simpler to get things done and easy to understand what is going on
@rand0mtv660
@rand0mtv660 Жыл бұрын
I'm not sure that decorators will revive React class components and to be honest, I hope they don't. As far as I know React team mentioned in the past that classes are problematic in JS since they are just syntactic sugar and they cause problems with bundling and minifying. I don't see React classes coming back and I hope that React team does deprecate them in the future. Regarding decorators in general, I don't do much OOP really so I don't write classes, but they do make things tidy and more readable, that's for sure. When I had to write MobX stores, using decorators just produced way cleaner and more understandable code.
@jrgalyen
@jrgalyen Жыл бұрын
can’t log be a class instead of a function within a function? need eslint rule to ban function in functions…
@jrgalyen
@jrgalyen Жыл бұрын
I was also hopeful for a pure function keyword. A keyword that you can’t modify parent scope. Which I know banning closures & higher order functions is nearly impossible. But even a limited scope way and expand later would be great
@grenadier4702
@grenadier4702 Жыл бұрын
Actually, this is bad (1:11). Why is one able to implicitly cast int to an enum type? That demolishes the whole idea about enum. One was already able to do this (3:03), and that was "T extends string". Pretty simple and also limits a possible type, down to a string. What did 'const' change, I wonder? 🧐
Does ts-reset fix TypeScript?
4:30
Matt Pocock
Рет қаралды 56 М.
Generics: The most intimidating TypeScript feature
18:19
Matt Pocock
Рет қаралды 177 М.
She's very CREATIVE💡💦 #camping #survival #bushcraft #outdoors #lifehack
00:26
Players vs Corner Flags 🤯
00:28
LE FOOT EN VIDÉO
Рет қаралды 87 МЛН
How To Get Married:   #short
00:22
Jin and Hattie
Рет қаралды 27 МЛН
Enums considered harmful
9:23
Matt Pocock
Рет қаралды 207 М.
TypeScript Speedrun: Crash Course for Beginners
23:39
Matt Pocock
Рет қаралды 39 М.
Infer is easier than you think
13:38
Matt Pocock
Рет қаралды 91 М.
The Best Programmer I Know • Daniel Terhorst-North • GOTO 2024
48:33
GOTO Conferences
Рет қаралды 59 М.
All Rust features explained
21:30
Let's Get Rusty
Рет қаралды 311 М.
Be Careful With Return Types In TypeScript
12:08
Theo - t3․gg
Рет қаралды 62 М.
Why JavaScript Devs are Switching to Rust in 2024
10:35
warpdotdev
Рет қаралды 258 М.
5 Useful Python Decorators (ft. Carberra)
14:34
Indently
Рет қаралды 102 М.
Learn TypeScript Generics In 13 Minutes
12:52
Web Dev Simplified
Рет қаралды 268 М.
She's very CREATIVE💡💦 #camping #survival #bushcraft #outdoors #lifehack
00:26