Это видео недоступно.
Сожалеем об этом.

Partial application in JavaScript!

Поделиться
HTML-код
  • Опубликовано: 2 авг 2021
  • #JavaScript
    Partial applications in JavaScript allows you to break down a function into multiple functions that take 1 or more arguments. The name sounds scary but It’s actually a straightforward concept. It’s often used in JavaScript via the Bind function. This video will show you how.
    ➡️At Hackages, our aim is to connect with our tech community and build educational training sessions to develop your skills as a software engineer. We have an in-house developer team available for consultancy to get your company the IT-development it needs! Contact us below!
    ✅Make sure to subscribe to our newsletter, we won't spam you!
    bit.ly/Hackage...
    👤Connect with us:
    / hackages​
    / hackages​
    / hackages​
    / hackages​
    Hackages.io​

Комментарии • 10

  • @user-tk5wb9qj3f
    @user-tk5wb9qj3f 7 месяцев назад +1

    Very nicely explained!

  • @sumnerd69
    @sumnerd69 2 года назад +4

    what vscode extensions do you use?

    • @baz_sh
      @baz_sh 2 года назад +4

      If you mean the live code analysis then it looks like Quokka to me :) hope this helps!

  • @BastianKhalil
    @BastianKhalil Год назад +1

    Very good explanation!

  • @pratikraj7475
    @pratikraj7475 2 года назад +1

    Keep it up 🔥🔥

  • @csmrfx
    @csmrfx 2 года назад +1

    Any reason you use the full function syntax as opposed to brackets-and-rockets? The () => {}.

    • @developersDiaryCode
      @developersDiaryCode  2 года назад +2

      Hi Casimir, thanks for your question. A simple answer in this case is It doesn't really matter the syntax you use. They're both functions. A more sophisticated answer would take into account that Arrow functions () => {} behave differently than normal function in certain cases: 'this', 'arguments' and many other keywords are not available when using Arrow functions