TypeScript Tutorial #20 - Tuples

  Рет қаралды 66,799

Net Ninja

Net Ninja

Күн бұрын

Пікірлер: 44
@frazertaylor
@frazertaylor 4 жыл бұрын
2:32 "...then it throws a wobbler..." - that cheered me up
@bburgess_keys
@bburgess_keys 4 жыл бұрын
I literally came here to say this!
@MattMcT
@MattMcT 2 жыл бұрын
"It throws a wobbler" - thats a new t-shirt right there! Cheers and thank you so much for this series, Shaun!
@suryadatta1424
@suryadatta1424 4 жыл бұрын
Hope you keep teaching us ninjas forever. I always tell my friends the best frontend tutorials can be found at Net Ninja's. The amount of work you put in to every series in unbelievable. Keep being the top ninja.
@NetNinja
@NetNinja 4 жыл бұрын
Hey, thanks so much Surya :)
@stanleyagwu4818
@stanleyagwu4818 4 жыл бұрын
Thanks so much shaun. Good work! You are my first point of reference for learning.
@austin-rt
@austin-rt Жыл бұрын
"throws a wobbler" might be the greatest slang for an error that i've ever heard.
@JCReborn89
@JCReborn89 4 жыл бұрын
Whenever my code editor highlights an error, i'm calling it a 'wobbler' from now on lol
@iamviduranishantha
@iamviduranishantha 3 жыл бұрын
Thanks, Shaun for this great tutorial. First time I learnt TypeScript and you made it a breeze
@om-flex8507
@om-flex8507 5 ай бұрын
Thanks, a great tutorial. Cleared my concepts
@NetNinja
@NetNinja 5 ай бұрын
Great to hear!
@huaweitrainingsafrica3742
@huaweitrainingsafrica3742 4 ай бұрын
Thank you very much. I once had this problem when trying to destructure an array.
@Shakeel714
@Shakeel714 3 жыл бұрын
A topnotch tutorial series on TypeScript from a topnotch teacher.
@annabadyka4658
@annabadyka4658 Жыл бұрын
That was a great tutorial, thank youu very much! Also thanks for providing a code for every lesson. You start from the easiest to the most difficult. Very useful.
@sambhumahato8320
@sambhumahato8320 4 жыл бұрын
You're awesome Shaun.💖
@froggerabc
@froggerabc Жыл бұрын
Tuples is beautifully explained
@kubataiupov1245
@kubataiupov1245 2 жыл бұрын
super informative videos Shaun! thanks a lot!
@NetNinja
@NetNinja 2 жыл бұрын
Glad you liked it! :) thanks for watching Kubat
@Mmg123-masked12G
@Mmg123-masked12G 2 жыл бұрын
you can also cast it to const by "as const" const values = [tofrom.value, details.value, amout.valueAsNumber] as const;
@williamreiudarbe7612
@williamreiudarbe7612 2 жыл бұрын
Thank you Net Ninja from Phils. Enjoyed Typescript, gatsby, laravel and vue series
@ThienNguyen-do4eo
@ThienNguyen-do4eo 3 жыл бұрын
you've helped my studying
@stevecriddle
@stevecriddle Жыл бұрын
One slightly annoying gotcha with tuples is you can use methods such as .push() on the array and you won't be shown an error.
@Marcus-cf2li
@Marcus-cf2li 2 жыл бұрын
Thanks ninja very useful content
@shift-happens
@shift-happens Жыл бұрын
...It becomes a wobbler :D very nice :)
@ZanarkandStarplayer
@ZanarkandStarplayer 3 жыл бұрын
Ahh I see you're a FG fan. A man of culture
@junliang3368
@junliang3368 4 жыл бұрын
Thank u shaun
@CherryHavoc
@CherryHavoc 2 жыл бұрын
What happens if you try to add an additional item to a tuple that you didn't specify? Will it let you? Or can you only add as many items as the tuple you specified had?
@aliston_gomes
@aliston_gomes Ай бұрын
please make a video on react+typescript and react router dom v7 or v7+, Thank You : )
@sujithprabhu
@sujithprabhu 2 жыл бұрын
To get this array: let arr = ['ryu', 25, true]; We can change this : let tup: [string, number, boolean] = ['ryu', 25, true]; to this: let tup: [any, any, any] = ['ryu', 25, true]; 😀
@VishalSharma-rn7mt
@VishalSharma-rn7mt 2 жыл бұрын
Awesome
@salahalhashmi6528
@salahalhashmi6528 3 жыл бұрын
thanks
@manoj-k
@manoj-k 2 жыл бұрын
🔥🔥🔥
@mylesdavies9476
@mylesdavies9476 Жыл бұрын
Not really seeing an advantage/ difference between defining an object instead of the tuple?
@ridl27
@ridl27 4 жыл бұрын
ty.
@mahmoudzakria6946
@mahmoudzakria6946 4 жыл бұрын
You can't spread within the class constructor args/props.
@easycodingwithammara4812
@easycodingwithammara4812 4 жыл бұрын
great
@R_Samnan
@R_Samnan 4 жыл бұрын
So cool
@ajayraja6636
@ajayraja6636 3 жыл бұрын
Before I watching this video, I thought Tuples in Typescript and Tuples in Python are same. 😂😂😂
@Norige
@Norige 11 ай бұрын
Use it when you can't come up with names for objects 😂😅
@adriatic123
@adriatic123 3 жыл бұрын
The course is ok but typescript is a complete nonsense language. It adds totally unnecessary things that javascript is not meant to take into consideration. After all, during compile phase javascript abandons all code that we have written in typescript while the resulting code remains twice bigger than it would be written in pure javascript. Rather useless waste of programmer time and effort.
@ayor3829
@ayor3829 3 жыл бұрын
I agree
@nathanrichards6955
@nathanrichards6955 3 жыл бұрын
I've recently picked up TS as I'm in a new role at a company that has adopted at, and the main advantages of using the language are to improve code quality before it compiles. This helps massively when working on large scale software projects with a dedicated testing team, as a lot of the errors that we may overlook from time to time are picked up as we write, forcing us to write code that will validate first time on a PR.
@jmmacatangay_grizzlybear
@jmmacatangay_grizzlybear 4 жыл бұрын
First ❤
@aminuumar496
@aminuumar496 4 жыл бұрын
Second
TypeScript Tutorial #21 - Wrap Up
2:03
Net Ninja
Рет қаралды 50 М.
Tuples in typescript
9:53
Hitesh Choudhary
Рет қаралды 14 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.
«Жат бауыр» телехикаясы І 26-бөлім
52:18
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 434 М.
TypeScript Generics are EASY once you know this
22:21
ByteGrad
Рет қаралды 146 М.
Why I’m Switching To Go in 2024
8:10
Awesome
Рет қаралды 98 М.
TypeScript Tutorial #11 - The DOM & Type Casting
11:19
Net Ninja
Рет қаралды 131 М.
TypeScript Interfaces vs Types
13:59
Harry Wolff
Рет қаралды 89 М.
TypeScript Tutorial #17 - Rendering an HTML Template
10:10
Net Ninja
Рет қаралды 95 М.
TypeScript Tutorial #18 - Generics
9:44
Net Ninja
Рет қаралды 120 М.
All You Need To Know About TypeScript
14:29
Clément Mihailescu
Рет қаралды 227 М.
I Cannot Believe TypeScript Recommends You Do This!
7:45
Web Dev Simplified
Рет қаралды 179 М.
Type Predicates Solve This Common TypeScript Error
5:01
Web Dev Simplified
Рет қаралды 49 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.