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

Sdílet
Vložit
  • čas přidán 30. 08. 2022
  • 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

Komentáře • 56

  • @soniablanche5672
    @soniablanche5672 Před rokem +5

    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.

  • @AnkitKumar-tp8hc
    @AnkitKumar-tp8hc Před rokem +4

    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.

  • @parthmehta6180
    @parthmehta6180 Před rokem +1

    I came across your channel a couple days ago, dude you made everything so simple to understand for me! Love the content bro. GODSPEED!

  • @mattsmith6828
    @mattsmith6828 Před rokem +1

    "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.

  • @vamshikrishnareddy76
    @vamshikrishnareddy76 Před rokem +1

    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!!

  • @mavdotjs
    @mavdotjs Před rokem +1

    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  Před rokem

      That’s cool to know, thanks for that info

  • @thydevdom
    @thydevdom Před rokem +1

    Once again. A video right on time for the questions I’ve been having.

  • @vaayuvaahana5024
    @vaayuvaahana5024 Před rokem +3

    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.

  • @liquidwater02
    @liquidwater02 Před rokem

    For a second I thought the video title said "The last video on javascript promises, i promise".

  • @Glinkis
    @Glinkis Před rokem +3

    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.

  • @syndg
    @syndg Před rokem +1

    Amazing video dude! Have been following your content for a while. You make everything sound easy and approachable!

  • @wateenafzal2963
    @wateenafzal2963 Před rokem +1

    Truly the last video needed
    what extention do you use for suggestions in IDE

  • @theofanisbirmpilis7364

    it would be really helpful if you made a video about the call stack

  • @Dorobila
    @Dorobila Před rokem

    great video and great easter egg too.

  • @SachalChandio
    @SachalChandio Před rokem

    Thanks a lot for your service.

  • @Paxters_
    @Paxters_ Před rokem +1

    Would be Great to see tutorial about charts. I want to do coingecko clone but cant figure out how to do charts.

  • @planetmall2
    @planetmall2 Před rokem

    Great job!

  • @marky9275
    @marky9275 Před rokem

    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

  • @KyselPoints
    @KyselPoints Před rokem

    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!

  • @martDKNY
    @martDKNY Před rokem

    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!

  • @rajeeshjohn8365
    @rajeeshjohn8365 Před rokem

    *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?

  • @gordonfreimann
    @gordonfreimann Před rokem +1

    i might be wrong but i think first c# has introduced async await keywords and the workflow.

    • @WebDevCody
      @WebDevCody  Před rokem +1

      Maybe idk, this isn’t a video on c#

    • @gordonfreimann
      @gordonfreimann Před rokem +1

      @@WebDevCody oh i thought it was a python video.

    • @WebDevCody
      @WebDevCody  Před rokem +1

      @@gordonfreimann ah honest mistake, nah this was a video about go

  • @indrajeetgiri8099
    @indrajeetgiri8099 Před rokem

    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...

  • @mristau_eu
    @mristau_eu Před rokem

    every async function will return a promise, so you can chain .then or .catch after the function call

    • @WebDevCody
      @WebDevCody  Před rokem +1

      I regret not mentioning that. I guess I’ll need one more video 😂

    • @mristau_eu
      @mristau_eu Před rokem

      @@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

  • @SeibertSwirl
    @SeibertSwirl Před rokem +1

    Good job babe!!

    • @mikopiko
      @mikopiko Před rokem +2

      Babe!?

    • @alexander3293
      @alexander3293 Před rokem +2

      @@mikopiko she is his wife

    • @SeibertSwirl
      @SeibertSwirl Před rokem +1

      @@YourExecellency bahaha y’all thought I was his stalker huh 😏 thanks for lookin out for him

  • @vamshikrishnareddy76
    @vamshikrishnareddy76 Před rokem

    Do you have any plans on doing projects with nodejs and SQL, orm ?

    • @WebDevCody
      @WebDevCody  Před rokem

      I often make videos using prisma which is an orm for sql

    • @vamshikrishnareddy76
      @vamshikrishnareddy76 Před rokem

      @@WebDevCody oh really i didn't know that. I will search for those tutorials. Is there any specific playlist ?

  • @_Rohit_Kumaar
    @_Rohit_Kumaar Před rokem

    Happy Coding ... 👍

  • @owenwexler7214
    @owenwexler7214 Před 11 měsíci

    "The last video on javascript promises you'll ever need to watch"
    Do you.......
    PROMISE?
    I'll see myself out now.

  • @FakeRoba
    @FakeRoba Před rokem

    WHAT IS THAT ERROR HIGHLIGHT TEXT PLUGIN NAME?

  • @kim92se64
    @kim92se64 Před rokem

    24 minutes watched

  • @eddies.8314
    @eddies.8314 Před rokem

    You promise?

  • @Kay8B
    @Kay8B Před rokem +1

    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.

  • @kantyDarius
    @kantyDarius Před rokem

    Great work man, you should consider PromiseAllSettled, is pretty useful.

    • @WebDevCody
      @WebDevCody  Před rokem +1

      I think I've used that maybe once or twice, but yeah I could see it's usecase

  • @eternalmangekyo022
    @eternalmangekyo022 Před rokem +1

    //eslint-disable no-unused-vars
    Great video!