#20 What is the Nullish Coalescing Operator? | JavaScript Full Tutorial

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

КОМЕНТАРІ •

  • @themussseee
    @themussseee 2 роки тому +4

    was very scared to learn js as a complete beginner but this series is really helping me thank you so much

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

    Awesome lesson master!

  • @asarim-de-ro
    @asarim-de-ro 3 роки тому +1

    damn, thats so well made. u n d e r r a t e d

  • @samuelraj7210
    @samuelraj7210 3 роки тому +3

    Excellent teaching, just what I was looking for. Do you have any online course that I can enroll my self in

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

    thanks you so much, really awsome

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

    Perfect! Thanks

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

    love you bro

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

    is [ ] empty array and { } and empty object a null or undefined ???

  • @dzajakeks5539
    @dzajakeks5539 3 роки тому +2

    have to comment how from html to js courses, there is a lot of audio improvements and much more

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

      Awesome! Thank you so much 🙂👍

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

    😍😍😍

  • @40kreshakshatriya9-i8
    @40kreshakshatriya9-i8 3 роки тому +1

    🔥🔥

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

    🐐

  • @TA-gc3bj
    @TA-gc3bj 3 роки тому +1

    Have a nice day 😁

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

    // 📑Tasks 1
    let course;
    console.log(course ?? "Pleas select our course");
    //output:- Pleas select our course
    // 📑Tasks 2
    let courseProgress = 0;
    console.log(courseProgress ?? "Start the course");
    //output:- 0