Destructuring in ES6| Array & Object Destructuring | Modern Javascript 2021

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

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

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

    Great 👍

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

    Thanks Nisha.. u make it a lot simpler

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

    That wz very concise n precise one...👍

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

    Hello, @Nisha Singla. Do you have a notes of these lectures? thank you in advance

  • @PankajKumar-tu9nv
    @PankajKumar-tu9nv Год назад

    mam your channel is very underrated.. I feel very sad dor you... you are great teacher... I hope your channel grow much bigger in future

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

    Thank you well explained

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

    Explain Fantastic 🤘

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

    Very nice explanation mam

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

    Hiii sis,
    U r teaching tutorials was Awesome .
    Pls Make one video about custom directive in angular

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

    Thank you!!!!

  • @RamKrishna-eg6cn
    @RamKrishna-eg6cn 2 года назад

    What If we have multiple address objects..can we able to retrieve the multiple city names by using destructuring..?

  • @jhawar.nikhlesh9333
    @jhawar.nikhlesh9333 Год назад

    hi ma'am you teaching tutorials was Awesome
    one question is the how can we adde Optional chaining with Destructuring
    Thanks in advance

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

    Please Explain Closures

  • @Dev-fk5rn
    @Dev-fk5rn Год назад

    How can we destructured below Expression...
    Const userData= [{id: 1, name:"Peter", age:25, role: "Developer"}]
    Expected output :
    I should be able to extract each key from objects as explained in this lecture .

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

      const [{ id, name, age, role }] = userData;
      console.log(id);
      console.log(name);
      console.log(age);
      console.log(role);
      Hope it will help.
      Thanks

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

      for (let { id, name, age, role } of userData) {
      console.log(id, name, age, role);
      }
      you can use this FOR loop also for iterating through array.
      Thanks