Var vs Let vs Const in Tamil for Beginners - JavaScript Series(Episode 4)

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

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

  • @g.komalavalli-up5xp
    @g.komalavalli-up5xp Год назад +1

    Thanks bro

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

    Bro, really awesome teach, tq

  • @gunaseelans1300
    @gunaseelans1300 3 года назад +1

    superb bro.. thank you

  • @tharunprakash4726
    @tharunprakash4726 3 года назад +1

    Your way of teaching is very nice bro

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

    Good explanations brother.

  • @Arasuari
    @Arasuari 3 года назад +1

    Really great explanation bro... thank you

    • @antonfrancisjeejo
      @antonfrancisjeejo  3 года назад +1

      Thank you keep supporting and share with your friends.

  • @tamilselvanu7861
    @tamilselvanu7861 3 года назад +1

    Bro react js la regux search la use pana solluga bro

  • @vickyr4605
    @vickyr4605 3 года назад +1

    react js freshers interview ques and ans post pannunga bro

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

    Bro variable ku intial aa values set pandrathuthaana? Intialization

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

      no that is called declaration. creating a variable is called Intialization

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

    Anna Datastructure ,oops conscept using js video podunga

  • @MrJK-yq3nh
    @MrJK-yq3nh 4 года назад

    bro unga techieegy course -ha flutter la make pandaringala bro pls

    • @MrJK-yq3nh
      @MrJK-yq3nh 4 года назад

      @@antonfrancisjeejo thnx bro i am very interesting

  • @nothingisimpossible6023
    @nothingisimpossible6023 4 года назад

    jeejo

  • @tamilselvanu7861
    @tamilselvanu7861 3 года назад +1

    Bro ungaloda email kuduga bro

  • @sundarrajan1219
    @sundarrajan1219 3 года назад

    hai, bro. thanks for your teaching way .but still, I not able to understand let and var bro.I am getting doubt. we can initiate it, var and let local and global right.
    var is a function scope and let is a block scope. we can use let also function scope right with the global declaration. then, var also we can use local and global and let also we can use local and global. but still, I am getting confusion.
    1).VAR Example.
    var a=2
    function local()
    {
    var a=10;
    console.log(a);
    }
    console.log(a);
    2) let example:
    let a=2
    function local()
    {
    let a=10;
    console.log(a);
    }
    console.log(a);
    I am getting output var and let the same output. if I use local and global var and let. then what is the difference between var and let?

    • @gopirajsekar
      @gopirajsekar 3 года назад

      Example 1 -> if you dont declare var a=10 in function, you can get output is 2 and 2, Example 2 -> if you dont declare var a=10 in function, you can get output is undefined and 2.

  • @nothingisimpossible6023
    @nothingisimpossible6023 4 года назад

    hi bro...