#39 Understanding JavaScript Scope | JavaScript Full Tutorial

Sdílet
Vložit
  • čas přidán 6. 09. 2024

Komentáře • 18

  • @michaelkatiba
    @michaelkatiba Před 2 lety +8

    Well explained, you'all remember to subscribe, you won't regret it!

  • @ifunanyablessing3411
    @ifunanyablessing3411 Před 10 měsíci +1

    Thank you so much @Dev Dreamer. I am lucky to have discovered your channel. So basically, I use a paid course to learn JavaScript so that I can study using the correct road map, but I use your channel to understand each concept like it's been explained to me one on one in a classroom. ❤❤

  • @iruga7379
    @iruga7379 Před rokem +2

    Fantastic. You just killed all my doubts about why we should be using LET instead of VAR.

    • @DevDreamer
      @DevDreamer  Před rokem

      Amazing! Thanks for watching 🙂👍

  • @ifunanyablessing3411
    @ifunanyablessing3411 Před 10 měsíci

    would appreciate if u can make more videos on advanced JavaScript and React framework

  • @vamsikrishna4972
    @vamsikrishna4972 Před 10 měsíci +1

    thanks bro u cleared all my doubts

  • @dontnowatimdoing446
    @dontnowatimdoing446 Před 10 měsíci

    Underrated channel. Great job

  • @MrFlamerFuel
    @MrFlamerFuel Před 2 lety +1

    lesson 38+39 earned you a sub! ;)

  • @itsnobledean9450
    @itsnobledean9450 Před rokem

    Consistent. Informative. Knowledgeable.

  • @kiranshelar2961
    @kiranshelar2961 Před 2 lety +1

    Excellent explanation 👍🏻👍🏻🔥

  • @appustudio8637
    @appustudio8637 Před 2 lety +1

    cool! thanks for the update.

  • @prabu2778
    @prabu2778 Před 2 lety +1

    You got a new subscriber today

  • @dreamscomingtrue2446
    @dreamscomingtrue2446 Před rokem

    thanks man .I understood it .

  • @kiranshelar2961
    @kiranshelar2961 Před 2 lety +2

    Are you planning to do javascript interview exercises too, at the end of this course?

  • @meysam8357
    @meysam8357 Před 2 lety

    amazing video thank you

  • @goranstanarevic1411
    @goranstanarevic1411 Před rokem +1

    man you're great

  • @JimmyKama
    @JimmyKama Před rokem

    This a a great tutorial!👍👍👍

  • @danielbentum136
    @danielbentum136 Před 2 lety

    // WHAT IS WRONG WITH THIS AND WHY????
    const numbers1 = [45, 4, 9, 16, 25];
    const numbers2 = numbers1.map(myFunction);
    document.getElementById("demo").innerHTML = numbers2;
    let double = 2;
    function myFunction(value, index, array) {
    value *= double;
    return value
    }