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

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

КОМЕНТАРІ • 23

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

    Great 👍

  • @swastikupadhye9291
    @swastikupadhye9291 3 роки тому +1

    That wz very concise n precise one...👍

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

    Very nice explanation mam

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

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

  • @strangerkartik
    @strangerkartik 3 роки тому +1

    Explain Fantastic 🤘

  • @alradiation5417
    @alradiation5417 3 роки тому +1

    Thanks Nisha.. u make it a lot simpler

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

    Thank you well explained

  • @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

  • @Ramm85
    @Ramm85 3 роки тому

    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

  • @harish1015
    @harish1015 3 роки тому +1

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

  • @akiratoriyama1320
    @akiratoriyama1320 3 роки тому +1

    Thank you!!!!

  • @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

  • @hajarathbabu4200
    @hajarathbabu4200 3 роки тому +1

    Please Explain Closures