Тёмный

TypeScript Tutorial #3 - Type Basics 

Net Ninja
Подписаться 1,6 млн
Просмотров 180 тыс.
50% 1

Hey gang, in this TypeScript tutorial we'll take a look at some of the basic types - strings, numbers & booleans.
🐱‍👤🐱‍👤 JOIN THE GANG -
/ @netninja
----------------------------------------
🐱‍💻 🐱‍💻 My Udemy Courses:
Modern JavaScript - www.thenetninj...
Vue JS & Firebase - www.thenetninja...
D3.js & Firebase - www.thenetninj...
🐱‍💻 🐱‍💻 Course Files:
github.com/iam...
🐱‍💻 🐱‍💻 Other Related Free Courses:
HTML & CSS Crash Course - • HTML & CSS Crash Cours...
Modern JavaScript - • Modern JavaScript Tuto...
🐱‍💻 🐱‍💻 TypeScript Docs:
www.typescript...
🐱‍💻 🐱‍💻 The Net Ninja Community Boards:
community.then...

Опубликовано:

 

4 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 66   
@albinoiiicordova4811
@albinoiiicordova4811 3 года назад
Hi Shaun! It has been 2 years since I bumped into your channel and I can't thank you enough for how awesome you and hardworking you are as a teacher. I am a career shifter and last Friday, I was able to sign my contract as a Front End Developer. This milestone can't be done without your help. Sincerely, thanks Shaun aka "The Net Ninja"! If you don't mind, may I ask what's your preparation process for making a tutorial. I wonder what's your learning process before completely creating a tutorial. Like referring first to the documentation and creating a lesson plan? Again, from miles away, thank you so much Shaun and I hope you inspire and transform more lives.
@a_basic_sheep_1993
@a_basic_sheep_1993 2 года назад
bro I watched like so many tutorials and you describe the stuff the best man. Cheers to you!!! This stuff is not easy man... An undisciplined person can't do it
@adityatiwari811
@adityatiwari811 4 года назад
Hello Shaun! I am on react tutorial right now and I must say I never get tired of watching your videos. Thank You for putting so much effort. :)
@dev_jeongdaeri
@dev_jeongdaeri 4 года назад
Now it’s time for me to learn typescript! 🤗👍👍👍 Really thanks for sharing your knowledge !
@lincholechisa6154
@lincholechisa6154 2 месяца назад
After watching 1 hr long video, I haven't got clear concept of typescript. But After watching your course on compiling typescript I got clear about and why typescript. Thank you Guy.
@dhavalvanjara572
@dhavalvanjara572 4 года назад
You are just simply awesome shaun. I had watched almost all your playlist. Big fan of yours. The way you explain is outstanding.
@NetNinja
@NetNinja 4 года назад
Thank you :)
@dhavalvanjara572
@dhavalvanjara572 4 года назад
Is there a hidden gem or perks, after join you here on RU-vid !!!
@allenng2980
@allenng2980 4 года назад
This dude is a legend, he just know every language lol
@RufatNuriev
@RufatNuriev 4 года назад
Turning NOTIFICATIONS ON for the Ninja!!!!!!
@arch7143
@arch7143 4 года назад
Hey Net Ninja, thank you for not having a video in our faces auto play whenever we visit your channel. Big times respect for that!
@hojdog
@hojdog 4 года назад
I always get excited for your new series but then have to wait a few days to get past the setup and get to the juicy vids. A suggestion: upload the first 4 tutorials of a new series straight away and then your usual schedule after that?
@Shakeel714
@Shakeel714 3 года назад
Wonderful content for learning TypeScript!! Thanks very much Shaun.
@BHFJohnny
@BHFJohnny 4 года назад
Looking forward to this series
@marcinkalmar9964
@marcinkalmar9964 2 года назад
It's very god that I have found your channel :)
@damodaranm3044
@damodaranm3044 4 года назад
Super awesome tutorial keep continuing the tutorial
@lucylucy04
@lucylucy04 5 месяцев назад
I really like your accent, it reminds me of my time in the UK
@NetNinja
@NetNinja 5 месяцев назад
Ahh, thank you! :)
@ugurkupelimusic
@ugurkupelimusic 3 года назад
Thanks for yet another great course. May I ask what that beautiful font theme is?
@8o8inSquares
@8o8inSquares 4 года назад
Thank you!
@phuongkhanhhuynh1737
@phuongkhanhhuynh1737 4 года назад
Hi Shaun, thanks for the tutorial. At 7:10 you said it won't compile to JS if there's an error. However, I still see it compiles to JS code though there's an type error.
@sticklebrix1756
@sticklebrix1756 4 года назад
If you add the --noEmitOnError flag, so it looks like this - tsc sandbox.js --noEmitOnError -w, then it will not compile on errors.
@SALAHEDDINEMJYDILA-kz2dz
@SALAHEDDINEMJYDILA-kz2dz Год назад
what is the extention that he use for the colors ?
@HammerBummer-ro9ik
@HammerBummer-ro9ik 2 месяца назад
Shaun how can you fit all that information into your brain?
@ronistiawan1130
@ronistiawan1130 4 года назад
Please make Angular series after this
@asunali313
@asunali313 2 года назад
as I said before in the previous video I'm here after react tutorial. and he used Mario and Luigi there too) 😀
@syedshow811
@syedshow811 3 года назад
what vs code extension are you using for formatting TS?
@doumkatekz
@doumkatekz 3 года назад
Do any of these talk about const vs let vs var?
@smalls5001
@smalls5001 4 месяца назад
i don’t know
@melaniehsieh9342
@melaniehsieh9342 4 года назад
Could you do a video series on React Native and Firebase
@melaniehsieh9342
@melaniehsieh9342 4 года назад
Maybe Expo and Firebase?
@wolfiechica
@wolfiechica 4 года назад
So at the end, you say that because it does the error checking within the TS file, it's fine that the JS doesn't check it for input type of a number. My confusion lies at the fact that nothing was mentioned about the input coming from the actual form on the HTML page. It seems like it wouldn't check the input type there (even though you and I both know it's defined), to even catch that the input type SHOULD be defined as a number. So this is really only a way to check yourself, and not the actual code meshing throughout, isn't it? tl;dr, should TS not transcomplie the logic into the JS to check for input type of number, when you go to the effort of defining the type in the TS file, if it really wanted to do its job?
@INKWEON7269
@INKWEON7269 4 года назад
Thanks!!
@vinitayadaviiitdharwad1578
@vinitayadaviiitdharwad1578 3 года назад
would request for nestjs and sequelize tutorials
@danielc4267
@danielc4267 3 года назад
This is the first time i see 0 dislike with over 1000 likes. It's a miracle in RU-vid land.
@danielc4267
@danielc4267 3 года назад
Damn it. I told my friends about it and they disliked the video on purpose.
@smalls5001
@smalls5001 4 месяца назад
@@danielc4267NOOO
@VishalSharma-rn7mt
@VishalSharma-rn7mt 2 года назад
Awesome
@sayemarg
@sayemarg 2 года назад
Awesome ♥
@shivammahajan5043
@shivammahajan5043 4 года назад
Can you make a video on how to make a voice to text app for android in React Native?
@pranjalg_131
@pranjalg_131 2 года назад
Which vscode theme is this, can't seem to find it in the store ?
@BlueyMcPhluey
@BlueyMcPhluey 3 года назад
wow, almost a year later and no downvotes
@iqbalibrahim4713
@iqbalibrahim4713 4 года назад
will it work if I put integer instead of number? and if not, what is the difference between the two for TS
@NetNinja
@NetNinja 4 года назад
Hey, no. All number types in TS are covered by number, and are floating point nums.
@ridl27
@ridl27 4 года назад
ty.
@sweatypotato248
@sweatypotato248 2 года назад
update: after finding a error in ts file it does give error but still compiles the ts file, check js file to see if compiled or not
@mmtiktok3869
@mmtiktok3869 4 года назад
please continue flutter tutorials too .. thanks
@Mina265
@Mina265 2 года назад
it is finished
@smalls5001
@smalls5001 4 месяца назад
@@Mina265tsss
@sumanparajuli229
@sumanparajuli229 4 года назад
Sir, i like your creativity... my final year project is coming soon and I want to connect flutter with AI.... So can you make.. video on AI with flutter with good interactive animation.... It would be so great and much helpful for me and all the viewer....if you make a video or a series on AI with flutter....
@bagaskara1567
@bagaskara1567 3 года назад
What if the data is from API, we doesnt have the data before compiling. How to handle that?
@phillipanselmo8540
@phillipanselmo8540 2 года назад
use typeof
@contentshark5122
@contentshark5122 2 года назад
When the ts gets converted into js , the diameter: number becomes diameter then how does it guarantee type safety because ultimate the js is running and not the ts in html.... What's the even purpose to create the ts file 😭😭
@neerajmishra2065
@neerajmishra2065 4 года назад
can you please teach us how to do live tracking of a vehicle in node js? pleaseeeeeeeeeeeeeee
@4am-withlearnuel
@4am-withlearnuel 6 месяцев назад
only the folder clones without to files
@jim.....
@jim..... 4 года назад
Hey, what if you needed a function to accept a typed parameter after compiling?
@202prince1
@202prince1 4 года назад
after compiling its converted into javascript which doesn't have typed parameters so it's not possible after compiling
@maltager5106
@maltager5106 4 года назад
If you really need this, you can use 'typeof'
@tito-ace
@tito-ace 4 года назад
hi shaun what theme do you use thanks!
@jsado
@jsado 3 года назад
I would like to know also
@destocot1729
@destocot1729 Год назад
my file still compiles even if there are errors
@LatromiPL
@LatromiPL 4 года назад
One episode per day?
@MrVisheshsingh
@MrVisheshsingh 4 года назад
🤓
@ateebahmed2237
@ateebahmed2237 3 года назад
Sorry, I just disliked the video. As there were 0 dislikes, causing the ratio of likes to dislikes to be undefined (i.e. divides by 0 is undefined). Hope youll understand. Greati video as always.
@Beast80K
@Beast80K 4 года назад
Thank you !
Далее
TypeScript Tutorial #4 - Objects & Arrays
7:36
Просмотров 194 тыс.
Infer is easier than you think
13:38
Просмотров 91 тыс.
PERFECT PITCH FILTER.. (CR7 EDITION) 🙈😅
00:21
Просмотров 3,9 млн
Why use Type and not Interface in TypeScript
14:12
Просмотров 208 тыс.
Generics in Typescript
12:28
Просмотров 20 тыс.
TypeScript - The Basics
12:01
Просмотров 1,5 млн
TypeScript Tutorial #7 - Better Workflow & tsconfig
6:50
TypeScript Tutorial #18 - Generics
9:44
Просмотров 117 тыс.
10 JavaScript Interview Questions You HAVE TO KNOW
13:41
Learn TypeScript Generics In 13 Minutes
12:52
Просмотров 268 тыс.
7 Awesome TypeScript Types You Should Know
8:57
Просмотров 85 тыс.