Stop Using Simple If Statements, Start Using This

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 10

  • @HumbertoBytes
    @HumbertoBytes ปีที่แล้ว +3

    This is great advice - I have absolutely no idea why all the tutorials use and abuse if statements instead of using a ternary operator

  • @MagicThor_de
    @MagicThor_de 5 หลายเดือนก่อน +1

    Great! Thanks, for this great and short explain! 🙂

  • @yassinplays1369
    @yassinplays1369 ปีที่แล้ว +2

    That is the best short video I have seen in my life , Thank You So Much!

  • @yagokurt9
    @yagokurt9 ปีที่แล้ว +1

    That's an amazing tip and makes the code way more clean and readable.

  • @RIP-GG
    @RIP-GG หลายเดือนก่อน

    I’m blessed to have stumbled upon this channel

  • @LazyTeaStudios
    @LazyTeaStudios 6 หลายเดือนก่อน

    This is so useful! Thank you so much! Guess its time to binge a new channel xD

  • @davidtourangeau
    @davidtourangeau 6 หลายเดือนก่อน

    TY!

  • @juliaalder2007
    @juliaalder2007 ปีที่แล้ว +1

    We can check multiple things, but we can only do one thing per ternary statement if it's true and one other thing in the else-part, right?

    • @spaderdabomb
      @spaderdabomb  ปีที่แล้ว +2

      Yep that’s right. Very useful for replacing simple if-else statements. You can chain ternary operators together, but I’m not a fan of doing that, I like to only use them for simpler logic.

    • @juliaalder2007
      @juliaalder2007 ปีที่แล้ว

      @@spaderdabomb Thank you. 😊