Frontend Interview Question| Function Currying | Function Currying vs Partial functions with Example

Поделиться
HTML-код
  • Опубликовано: 5 фев 2025

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

  • @arvindbehera5394
    @arvindbehera5394 Год назад +3

    Recursion, Currying, and Pure function these concepts are explained with good examples and deep explanations. No promotion no useless talks. Thank you so much.

  • @adarshdwivedi5395
    @adarshdwivedi5395 9 месяцев назад

    Great tutorial...🎉

  • @ahamedbasha87
    @ahamedbasha87 2 года назад +3

    Honestly I'm preparing my interviews by using your videos only..Kudos for your efforts and great teaching skills

  • @sankmaathan6184
    @sankmaathan6184 Год назад

    You are doing great work. thank you so much

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

    Awesome video, with detailed explanation. Please make one video on denouncing and throttling would really appreciate that.

  • @imamansoni
    @imamansoni 2 года назад

    Although i know what curring is, still watched the video and loved the examples. Well done 👍

  • @jatinsharma5566
    @jatinsharma5566 2 года назад

    Best Explanation🔥🔥

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

    Nice one

    • @NishaSingla
      @NishaSingla  2 года назад

      Thank you

    • @dilipdwiveedi1611
      @dilipdwiveedi1611 2 года назад

      @@NishaSingla please post some more videos on React hooks...im preparing for my interview on Reactjs

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

    Thans for the clear explanation

  • @ajaykumar-ho4wz
    @ajaykumar-ho4wz Год назад

    please share more videos on recursion

  • @aakash261
    @aakash261 2 года назад

    good explanation. please make full javascript course, Thank you 🙂

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

    thanks for the efforts

  • @gokulkrishna9264
    @gokulkrishna9264 2 года назад

    Awesome

  • @karthikeyanjagan7832
    @karthikeyanjagan7832 2 года назад

    Thank you Nisha

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

    👍👍👍

  • @hi-yi7en
    @hi-yi7en 2 года назад +1

    Tq 👍

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

    We want more Angular tutorials

    • @ksai8185
      @ksai8185 2 года назад

      bro actually angular has less demand these days hence everyone stopped angular tutorials

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

      @@ksai8185 Somehow I agree with you but from my point of view, Angular has better structure in comparison of React. Also Angular framework manages by Google and Google will never let his product down.

    • @ksai8185
      @ksai8185 2 года назад

      @@ahmadfaraz3678 but somehow react and vuejs are getting into top.we can observe the same from npm trends

  • @dharmeshgohil9375
    @dharmeshgohil9375 9 месяцев назад

    const curry = (fn) => {
    console.log(fn.length);
    return (curried = (...args) => {
    console.log(fn.length);
    if (fn.length !== args.length) {
    return curried.bind(null, ...args);
    }
    return fn(...args);
    });
    };
    const total = (x, y, z) => x + y + z;
    const curriedTotal = curry(total);
    console.log(curriedTotal(10)(20)(30));
    can you explain it with detail what is null doing in thi s return curried .bind(null,...args) plz