JavaScript Tip: Conditional Shorthand

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

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

  • @MauriceLacerda0
    @MauriceLacerda0 4 года назад +6

    Ternary operators and short-circuit evaluation using concise logical expressions are amongst my favorite things in JavaScript! They are just so elegant!

  • @_chris_6786
    @_chris_6786 4 года назад +2

    Nothing to add to this tutorial. 100% informative and complete. Thank you!!

  • @chnsonic
    @chnsonic 4 года назад +1

    I finally aware boolean type are useful.

  • @Luxcium
    @Luxcium 4 года назад +1

    What do you use for the screen capture of your videos

  • @ChrisTian-ox5nr
    @ChrisTian-ox5nr 4 года назад +2

    let finalMessage = (!false) ? "Good Job!" : "Watch Tutorial Again";