#39 Understanding JavaScript Scope | JavaScript Full Tutorial

Поділитися
Вставка
  • Опубліковано 7 вер 2024

КОМЕНТАРІ • 18

  • @michaelkatiba
    @michaelkatiba 2 роки тому +8

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

  • @ifunanyablessing3411
    @ifunanyablessing3411 10 місяців тому +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 Рік тому +2

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

    • @DevDreamer
      @DevDreamer  Рік тому

      Amazing! Thanks for watching 🙂👍

  • @ifunanyablessing3411
    @ifunanyablessing3411 10 місяців тому

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

  • @vamsikrishna4972
    @vamsikrishna4972 10 місяців тому +1

    thanks bro u cleared all my doubts

  • @dontnowatimdoing446
    @dontnowatimdoing446 10 місяців тому

    Underrated channel. Great job

  • @MrFlamerFuel
    @MrFlamerFuel 2 роки тому +1

    lesson 38+39 earned you a sub! ;)

  • @itsnobledean9450
    @itsnobledean9450 Рік тому

    Consistent. Informative. Knowledgeable.

  • @kiranshelar2961
    @kiranshelar2961 2 роки тому +1

    Excellent explanation 👍🏻👍🏻🔥

  • @appustudio8637
    @appustudio8637 2 роки тому +1

    cool! thanks for the update.

  • @prabu2778
    @prabu2778 2 роки тому +1

    You got a new subscriber today

  • @dreamscomingtrue2446
    @dreamscomingtrue2446 Рік тому

    thanks man .I understood it .

  • @kiranshelar2961
    @kiranshelar2961 2 роки тому +2

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

  • @meysam8357
    @meysam8357 2 роки тому

    amazing video thank you

  • @goranstanarevic1411
    @goranstanarevic1411 Рік тому +1

    man you're great

  • @JimmyKama
    @JimmyKama Рік тому

    This a a great tutorial!👍👍👍

  • @danielbentum136
    @danielbentum136 2 роки тому

    // 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
    }