Это видео недоступно.
Сожалеем об этом.

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

Поделиться
HTML-код
  • Опубликовано: 8 мар 2021
  • 🙂 SUBSCRIBE - hit the bell 🔔 and choose all: goo.gl/nYLZvz
    In this lesson let's learn all about the built in Math object, the Math object contains math properties and methods that are used to do some really cool things such as generate random numbers an find the min and max values from a list.
    ------------------
    👍 HTML FULL TUTORIAL: shorturl.at/fiCMV
    👍 CSS FULL TUTORIAL: shorturl.at/clGSZ
    ------------------
    FACEBOOK: / devdreamercode
    TWITTER: / devdreamercode
    SUBSCRIBE and hit the BELL NOTIFICATION 🔔: goo.gl/nYLZvz
    ------------------
    Learn with Dev Dreamer! Step by step, easy to understand tutorials :-)

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

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

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

    thanks you so much, really awsome

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

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

    Perfect! Thanks

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

    love you bro

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

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

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

      Awesome! Thank you so much 🙂👍

  • @bosededavid6706
    @bosededavid6706 11 месяцев назад +1

    😍😍😍

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

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

  • @40kreshakshatriya9-i8
    @40kreshakshatriya9-i8 3 года назад +1

    🔥🔥

  • @Marqshipley
    @Marqshipley 5 месяцев назад

    🐐

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