The last video on javascript promises you'll ever need to watch

  Рет қаралды 20,573

Web Dev Cody

Web Dev Cody

Жыл бұрын

teaching about javascript promises
developer.mozilla.org/en-US/d...
My VSCode Extensions:
- theme: material community high contrast
- fonts: Menlo, Monaco, 'Courier New', monospace
- errors: Error Lens
- extra git help: Git Lens
- tailwind css intellisense
- indent rainbow
- material icon theme
- prettier & eslint
- ES7+ React Snippets
------------
🤑 Patreon / webdevjunkie
🔔 Newsletter eepurl.com/hnderP
💬 Discord / discord
📁. GitHub github.com/codyseibert/youtube

Пікірлер: 56
@soniablanche5672
@soniablanche5672 Жыл бұрын
funny thing about await is that it works with any object that has a .then()/.catch() method, it doesn't have to be the built-in Promise class. This is pretty useful if one of your library you are using returns a pseudo-promise object or some sort of polyfill.
@parthmehta6180
@parthmehta6180 Жыл бұрын
I came across your channel a couple days ago, dude you made everything so simple to understand for me! Love the content bro. GODSPEED!
@AnkitKumar-tp8hc
@AnkitKumar-tp8hc Жыл бұрын
This video is excatly what title says, only video we need to understand promises. By far the best explanation I have ever seen. I have seen your other videos also like subscriber refractor and I totally love it. Please keep up the good work.
@vamshikrishnareddy76
@vamshikrishnareddy76 Жыл бұрын
I was about request you to make a full video on promises after watching your short video on promises but here it is thank you!!
@mattsmith6828
@mattsmith6828 10 ай бұрын
"Promise.reject" is useful when you want a rejected Promise to propagate further down the chain, instead of being immediately resolved. This effectively allows us to change the behavior of Promise chaining so we can skip over ".then" methods that contains code which depends on the initial rejected Promise.
@thydevdom
@thydevdom Жыл бұрын
Once again. A video right on time for the questions I’ve been having.
@syndg
@syndg Жыл бұрын
Amazing video dude! Have been following your content for a while. You make everything sound easy and approachable!
@vaayuvaahana5024
@vaayuvaahana5024 Жыл бұрын
Learnt a lot! Thanks a ton. Also, can you pls do a video on refresh tokens? I learnt jwt from your video and realised there aren't many videos which explain what refresh toke ns are, and how to implement them. Pls do a video on refresh toke if time permits. Thanks again.
@mavdotjs
@mavdotjs Жыл бұрын
note that await works on not just promises, but anything with a `then` function, similar to how the $ syntax works on not just stores, but anything with a `subscribe` function
@WebDevCody
@WebDevCody Жыл бұрын
That’s cool to know, thanks for that info
@Dorobila
@Dorobila Жыл бұрын
great video and great easter egg too.
@theofanisbirmpilis7364
@theofanisbirmpilis7364 Жыл бұрын
it would be really helpful if you made a video about the call stack
@Glinkis
@Glinkis Жыл бұрын
A good thing to mention is that instead of using Promise.all, you can initialize all your promises and await them where you need their resolved values. So if you only need one of the values if a condition depending on another resolved value is true, you only need to await one value.
@SachalChandio
@SachalChandio Жыл бұрын
Thanks a lot for your service.
@SachalChandio
@SachalChandio Жыл бұрын
my gratitude.
@planetmall2
@planetmall2 Жыл бұрын
Great job!
@wateenafzal2963
@wateenafzal2963 Жыл бұрын
Truly the last video needed what extention do you use for suggestions in IDE
@wateenafzal2963
@wateenafzal2963 Жыл бұрын
founded it in description 😁😊
@Paxters_
@Paxters_ Жыл бұрын
Would be Great to see tutorial about charts. I want to do coingecko clone but cant figure out how to do charts.
@marky9275
@marky9275 Жыл бұрын
Great video and explanation, thanks! A little nitpick, I'm sure it's helpful but the linting errors and red highlighting were pretty distracting to watch
@WebDevCody
@WebDevCody Жыл бұрын
I’ll turn them off next time
@liquidwater02
@liquidwater02 Жыл бұрын
For a second I thought the video title said "The last video on javascript promises, i promise".
@indrajeetgiri8099
@indrajeetgiri8099 Жыл бұрын
from inside this._wrap method you're returning an function with a value as an argument and storing the returned result inside this._then but from where you're calling that function and passing that value can you please explain...
@rajeeshjohn8365
@rajeeshjohn8365 9 ай бұрын
*DOUBT* : Does promises run a certain set of codes synchronously while allowing other codes to run asynchronously? What I am trying to ask is if a code depends on the result of a time consuming expression, it can be wrapped in promises while those that does not require the result of the expression can run asynchronously?
@SeibertSwirl
@SeibertSwirl Жыл бұрын
Good job babe!!
@mikopiko
@mikopiko Жыл бұрын
Babe!?
@alexander3293
@alexander3293 Жыл бұрын
@@mikopiko she is his wife
@SeibertSwirl
@SeibertSwirl Жыл бұрын
@@YourExecellency bahaha y’all thought I was his stalker huh 😏 thanks for lookin out for him
@gordonfreimann
@gordonfreimann Жыл бұрын
i might be wrong but i think first c# has introduced async await keywords and the workflow.
@WebDevCody
@WebDevCody Жыл бұрын
Maybe idk, this isn’t a video on c#
@gordonfreimann
@gordonfreimann Жыл бұрын
@@WebDevCody oh i thought it was a python video.
@WebDevCody
@WebDevCody Жыл бұрын
@@gordonfreimann ah honest mistake, nah this was a video about go
@martDKNY
@martDKNY Жыл бұрын
This implementation save value, but do not have state, right? So we can resolve internal promise(in wrap) over again and return another wrapped 'promise'. new Promise makes an object, so where this (res,rej)=>{res(val)}, I mean executor where it will be store? In closure? It execute immediately, but res(val) always return new Promise? Urphh, complicated!
@vamshikrishnareddy76
@vamshikrishnareddy76 Жыл бұрын
Do you have any plans on doing projects with nodejs and SQL, orm ?
@WebDevCody
@WebDevCody Жыл бұрын
I often make videos using prisma which is an orm for sql
@vamshikrishnareddy76
@vamshikrishnareddy76 Жыл бұрын
@@WebDevCody oh really i didn't know that. I will search for those tutorials. Is there any specific playlist ?
@_Rohit_Kumaar
@_Rohit_Kumaar Жыл бұрын
Happy Coding ... 👍
@mristau_eu
@mristau_eu Жыл бұрын
every async function will return a promise, so you can chain .then or .catch after the function call
@WebDevCody
@WebDevCody Жыл бұрын
I regret not mentioning that. I guess I’ll need one more video 😂
@mristau_eu
@mristau_eu Жыл бұрын
@@WebDevCody will be the last last video then ;) i actually like the fact you can add a catch to every promise that you await inside async function and in there log the actual error and throw it again with self defined error message to send it directly to the outer catch
@KyselPoints
@KyselPoints Жыл бұрын
Why does my console always print, "Uncaught Reference error, Promise is not defined" even though I write the exact code you just taught? This promise thing is just eating my mind currently. I wrote promise code in vs code, in chrome (snippet), and even then the output is the same. I can't figure out why!
@owenwexler7214
@owenwexler7214 8 ай бұрын
"The last video on javascript promises you'll ever need to watch" Do you....... PROMISE? I'll see myself out now.
@FakeRoba
@FakeRoba Жыл бұрын
WHAT IS THAT ERROR HIGHLIGHT TEXT PLUGIN NAME?
@WebDevCody
@WebDevCody Жыл бұрын
Error lens
@FakeRoba
@FakeRoba Жыл бұрын
@@WebDevCody Ty, and sorry for caps!
@kim92se64
@kim92se64 9 ай бұрын
24 minutes watched
@WebDevCody
@WebDevCody 9 ай бұрын
48
@kim92se64
@kim92se64 4 ай бұрын
96@@WebDevCody
@eddies.8314
@eddies.8314 Жыл бұрын
You promise?
@WebDevCody
@WebDevCody Жыл бұрын
No promises
@whisky8496
@whisky8496 Жыл бұрын
@@WebDevCody Promise rejected!
@WebDevCody
@WebDevCody Жыл бұрын
@@whisky8496 it’s all settled then
@kantyDarius
@kantyDarius Жыл бұрын
Great work man, you should consider PromiseAllSettled, is pretty useful.
@WebDevCody
@WebDevCody Жыл бұрын
I think I've used that maybe once or twice, but yeah I could see it's usecase
@Kay8B
@Kay8B Жыл бұрын
Promise.allSettled() is good for use cases where you have several promises and your not dependant on all of them resolving, but you still want the ones that did resolve. Promise.all() will reject if one rejects but allSettled will continue even if one fails. Edit: Could you do a video on your linting or zsh, basically your coding setup.
@eternalmangekyo022
@eternalmangekyo022 Жыл бұрын
//eslint-disable no-unused-vars Great video!
Async Await vs. Promises - JavaScript Tutorial for beginners
24:30
This is how I recommend you learn Recursion in Javascript
24:39
Web Dev Cody
Рет қаралды 31 М.
小路飞第二集:小路飞很听话#海贼王  #路飞
00:48
路飞与唐舞桐
Рет қаралды 5 МЛН
Парковка Пошла Не По Плану 😨
00:12
Глеб Рандалайнен
Рет қаралды 14 МЛН
CAN FOXY TRICK HIM?! 🤣 #shorts *FOXY AND NUGGET!*
00:17
LankyBox
Рет қаралды 16 МЛН
This is the Only Right Way to Write React clean-code - SOLID
18:23
Разбор Promise и создание собственной имплементации MyPromise | JavaScript
50:05
Елена Литвинова — Искусство Веб-разработки 🛸
Рет қаралды 16 М.
I'm definitely using this library for all server actions now
5:31
The Dangers Of Promise.all()
6:15
Theo - t3․gg
Рет қаралды 65 М.
Blazingly Fast JavaScript with ThePrimeagen | Preview
18:22
Frontend Masters
Рет қаралды 100 М.
This tool makes self hosting simple
5:59
Web Dev Cody
Рет қаралды 31 М.
host ALL your AI locally
24:20
NetworkChuck
Рет қаралды 282 М.
Golang Error Handling Is Better Than You Think!
18:53
Anthony GG
Рет қаралды 24 М.
Looking Under the Hood of JavaScript
6:34
ThePrimeagen
Рет қаралды 173 М.
小路飞第二集:小路飞很听话#海贼王  #路飞
00:48
路飞与唐舞桐
Рет қаралды 5 МЛН