Recursion in JavaScript - JavaScript Bangla ( বাংলা ) Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 67

  • @moazzemhossainbappi1723
    @moazzemhossainbappi1723 4 ปีที่แล้ว +5

    অসাধারণ থিংকিং, আসলে আপনার ভিডিও যত দেখছি ততই মুগ্ধ হচ্ছি। ধন্যবাদ ভাই।

  • @mehedihasanwd
    @mehedihasanwd 3 ปีที่แล้ว +3

    This is Awesome vai. Specially thinking process ta khub helpful. Thank you so much. ❤️ ❤️ ❤️

  • @riyadhossain1706
    @riyadhossain1706 2 ปีที่แล้ว +1

    What a splendid elucidation you delivered!

  • @saurabrakshit405
    @saurabrakshit405 3 ปีที่แล้ว +1

    Khub e bhalo laglo tutorial ta

  • @shamiurrahman310
    @shamiurrahman310 3 ปีที่แล้ว +1

    apni oshadharon bhaiya

  • @mdahmed6001
    @mdahmed6001 4 ปีที่แล้ว +2

    অসাধারণ। অনেক বেশি হেল্পফুল। হয়তো সব ভিডিও তে কমেন্ট করা হয় না। যাই হোক ভেরি মাচ হেল্পফুল

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว

      ধন্যবাদ। যদি হেল্পফুল মনে হয় তাহলে শেয়ার করবেন দয়া করে।

    • @farahsultana1988
      @farahsultana1988 2 ปีที่แล้ว

      function mysum(n){
      if(n ===0){
      return 0;
      }
      else{
      return mymult(n-1) + n;
      }
      }
      console.log(mysum(12)); Amar Question ta hochee jokhon n ===0 thokhon to if condition a dhuke return 0 kore dauaar kotha .... fole result asar kotha console.log(mysum(12)) == 0 ..... tana hoee addition ta kivabe dekhachee????

    • @farahsultana1988
      @farahsultana1988 2 ปีที่แล้ว

      function mysum(n){
      if(n ===0){
      return 0;
      }
      else{
      return mymult(n-1) + n;
      }
      }
      console.log(mysum(12)); Amar Question ta hochee jokhon n ===0 thokhon to if condition a dhuke return 0 kore dauaar kotha .... fole result asar kotha console.log(mysum(12)) == 0 ..... tana hoee addition ta kivabe dekhachee????

  • @imranhossain3511
    @imranhossain3511 2 ปีที่แล้ว +1

    excellent video vaiya

  • @shakilbabu7368
    @shakilbabu7368 4 ปีที่แล้ว +4

    Thank you vaiya . Really you are amazing. Take love

  • @theadsis
    @theadsis 4 ปีที่แล้ว +5

    Thanks for your effort. Really *appreciable* .

  • @alakdas4662
    @alakdas4662 4 ปีที่แล้ว +5

    দাদা amazing.
    দাদা oop in js নিয়ে যদি content তৈরি করেন তাহলে খুব উপকার হবে । দাদা আপনার যদি সময় হাতে থাকে। সব সময় ভালো থাকুন

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว +2

      OOP এর base ই তো তৈরী করে দিলাম - Prototype Inheritance & class শিখায়ে দিলাম। আর JavaScript তো functional programming language. সব কিছু class থেকে function এ shift হচ্ছে! OOP শেখার এতো interest যেহেতু তোমার, অবশ্যই দেব। কিন্তু OOP এর exact আর কি জানতে চাও সেটা আমাকে বল?

    • @alakdas4662
      @alakdas4662 4 ปีที่แล้ว +1

      @@LearnwithSumit দাদা oop তে constructor function এ this কিভাবে কাজ করে, new key word কিভাবে কাজ করে, custom ভাবে আমরা new keyword এর কাজটা কি আমরা নিজেরা তৈরি করতে পারবো, constructor property in any object সম্পর্কে ধারনাটা ক্লিয়ার না আমার, এগুলো নিয়ে যদি করেন তাহলে ভালো হবে আশাকরি সবার জন্যই

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว +4

      ​ @alak das দুঃখ পেলাম ভাই। তুমিই আমার sob video দেখনি অথবা পুরোটা দেখনি অথবা দেখে বুঝনি। আমি আমার পুরো prototype video তে বারবার constructor function বুঝালাম, এরপরে আবার class prototype inheritance নিয়ে আবার ভিডিও দিলাম! সেখানেও constructor function বুঝালাম। "this" নিয়ে আলাদা একটা ভিডিও করলাম! ৩ টা ভিডিও তে বারবার this, constructor, object, new বুঝালাম। এর বাইরে OOP তে আর কি বাকি থাকে জানিনা। শুধু video title এ OOP লিখিনাই বলে হয়ত এই confusion! এর বেশি আসলে আমারই জ্ঞান নেই ভাই :(

    • @farahsultana1988
      @farahsultana1988 2 ปีที่แล้ว

      function mysum(n){
      if(n ===0){
      return 0;
      }
      else{
      return mymult(n-1) + n;
      }
      }
      console.log(mysum(12)); Amar Question ta hochee jokhon n ===0 thokhon to if condition a dhuke return 0 kore dauaar kotha .... fole result asar kotha console.log(mysum(12)) == 0 ..... tana hoee addition ta kivabe dekhachee????

    • @raihanjoarder1026
      @raihanjoarder1026 5 หลายเดือนก่อน

      @@farahsultana1988 n=12 hoila if() block a kano dhukbe? aita to direct else block a chole jabe..as per my understanding..ami vul o hoita pari

  • @mdgolamrabby156
    @mdgolamrabby156 3 ปีที่แล้ว +2

    sir ai part by part vedio gulo onek vlo lagse....hobe naki aro.....

  • @ruhulbro
    @ruhulbro 3 ปีที่แล้ว +2

    Thank you so much

  • @__Sajib
    @__Sajib 3 ปีที่แล้ว +4

    the explanation was so good ... ( if you have time plz make a TypeScript tutorial plz!!!).

    • @LearnwithSumit
      @LearnwithSumit  3 ปีที่แล้ว +1

      Thanks. I will start TypeScript tutorials. Please stay tuned in my channel. in the mean time you can check this - th-cam.com/video/HsGSVnMzxHI/w-d-xo.html

  • @mithunbarua7537
    @mithunbarua7537 3 ปีที่แล้ว +1

    Thank you ভাই

  • @yeasinarafat.2604
    @yeasinarafat.2604 3 ปีที่แล้ว +5

    vaiya last total er function ta buji nai eta jodi , f(n-1) tahole to line num 2 e er value hobe n=2, (2-1)=1 and line 3 e n=3, (3-1) =2.

  • @abutahersaikat9051
    @abutahersaikat9051 3 ปีที่แล้ว +2

    You are going to next big thing ☺️😜.

  • @kumarniloy1798
    @kumarniloy1798 3 ปีที่แล้ว +1

    Thanks vaiya

  • @ABUTAHER-wg7gz
    @ABUTAHER-wg7gz 2 ปีที่แล้ว +1

    behind the seen also closure concept ??

  • @jaber-jsr
    @jaber-jsr 3 ปีที่แล้ว +2

    Arigato 💥

  • @mdosmanfarooque1415
    @mdosmanfarooque1415 2 ปีที่แล้ว

    Thank you very much!!!

  • @alinanucci3162
    @alinanucci3162 3 ปีที่แล้ว +2

    very helpful

    • @farahsultana1988
      @farahsultana1988 2 ปีที่แล้ว

      function mysum(n){
      if(n ===0){
      return 0;
      }
      else{
      return mymult(n-1) + n;
      }
      }
      console.log(mysum(12)); Amar Question ta hochee jokhon n ===0 thokhon to if condition a dhuke return 0 kore dauaar kotha .... fole result asar kotha console.log(mysum(12)) == 0 ..... tana hoee addition ta kivabe dekhachee????

  • @ratiburrahaman643
    @ratiburrahaman643 4 ปีที่แล้ว +1

    Thanks Bhai.

  • @Takatou__Yogiri
    @Takatou__Yogiri 10 หลายเดือนก่อน

    thank you

  • @fahimahmed1926
    @fahimahmed1926 3 ปีที่แล้ว +2

    last total f(n-1) ta kivabe holo kew bujate perben ?

  • @oaeskuruni313
    @oaeskuruni313 4 ปีที่แล้ว +4

    Tremendous!!!

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว

      Thanks a lot. Please stay tuned!

  • @mehedimazumder9378
    @mehedimazumder9378 4 ปีที่แล้ว +1

    Thanks vai

  • @md.sakhawatullah8279
    @md.sakhawatullah8279 3 ปีที่แล้ว

    bhai keep it up...

  • @raitulsams3443
    @raitulsams3443 3 ปีที่แล้ว +2

    What's the difference between var and let?

  • @shibir_supporter
    @shibir_supporter ปีที่แล้ว

    8931 maximum number then warning: Maximum call stack size exceeded

  • @rakibhossain9135
    @rakibhossain9135 4 ปีที่แล้ว +1

    দাদা এবার রিয়েক্ট-রিডাক্স নিয়ে যদি কয়েকটা ভিডিও হতো খুব জোস্ হতো । বিডিতে রিয়েক্ট জেএস এর উপর তেমন কোন ভালো ভিডিও নেই।

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว +4

      করব ভাই। একটু সময় পেলেই করব। JavaScript না জেনে React শেখা যাবেনা। তাই আগে JavaScript এর কঠিন জিনিস গুলো দেখাচ্ছি।

  • @md.samsuddinshohan6069
    @md.samsuddinshohan6069 3 ปีที่แล้ว

    Ultimate Solution is DP.

    • @farahsultana1988
      @farahsultana1988 2 ปีที่แล้ว

      function mysum(n){
      if(n ===0){
      return 0;
      }
      else{
      return mymult(n-1) + n;
      }
      }
      console.log(mysum(12)); Amar Question ta hochee jokhon n ===0 thokhon to if condition a dhuke return 0 kore dauaar kotha .... fole result asar kotha console.log(mysum(12)) == 0 ..... tana hoee addition ta kivabe dekhachee????

  • @fateminsupriaoishee3598
    @fateminsupriaoishee3598 3 ปีที่แล้ว +2

    ❤️

  • @rabbilifestyle7107
    @rabbilifestyle7107 3 ปีที่แล้ว

    Very Nice Tutorial ????

  • @learnwithmuhib
    @learnwithmuhib 3 ปีที่แล้ว +3

    Thank you very much Bro. I Love your videos...

  • @tanzimibthesam5861
    @tanzimibthesam5861 4 ปีที่แล้ว +1

    Stack Vs heap n pass by value Vs pass by reference r video hopefully oabo

  • @shamimDairy100
    @shamimDairy100 2 ปีที่แล้ว

    💕💕🥰

  • @zabirabdullah6914
    @zabirabdullah6914 4 ปีที่แล้ว

    sumit দাদা, রিকর্সিভ কে যদি, ডায়নামিক করা যায় তাহলেই তো সলুশন হয়ে যায়।

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว +1

      could u please show me an example? then I will reply. Also please note that, inside the video, I told that this is for absolute beginners who don't even understand recursive meaning. Recursive diye solution kora kintu amar uddeshho na. Etake solve korar onek way ache I know. Tail call optimization koreo ami jei code likhsi setake unlimited number er jonno kora jabe.

  • @ArifHossain-zz8lq
    @ArifHossain-zz8lq 4 ปีที่แล้ว

    bujte pari nai kivabe n-1 holo jodio for loop korte partesi

    • @LearnwithSumit
      @LearnwithSumit  4 ปีที่แล้ว

      n = 1 na bujhle i = 1 dhore nin. asha kori bujhte parben

  • @shaonsikdar8738
    @shaonsikdar8738 11 หลายเดือนก่อน

    ❤ 01 Dec, 2023

  • @imrannaaziremon498
    @imrannaaziremon498 2 ปีที่แล้ว +1

    thanks vaiya

  • @mdhasiburrahmannafiz9984
    @mdhasiburrahmannafiz9984 2 ปีที่แล้ว +1

    ❤️❤️❤️❤️

  • @roothossen
    @roothossen ปีที่แล้ว