JavaScript TERNARY OPERATOR in 6 minutes! ❓

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

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

  • @BroCodez
    @BroCodez  Год назад +10

    // ternary operator = a shortcut to if{} and else{} statements
    // helps to assign a variable based on a condition
    // condition ? codeIfTrue : codeIfFalse;
    let time = 9;
    let greeting = time < 12 ? "Good morning!" : "Good afternoon!";
    console.log(greeting);
    let isStudent = false;
    let message = isStudent ? "You are a student" : "You are NOT a student";
    console.log(message);
    let purchaseAmount = 99;
    let discount = purchaseAmount >= 100 ? 10 : 0;
    console.log(`Your total is $${purchaseAmount - purchaseAmount * (discount/100)}`);

  • @nikkehtine
    @nikkehtine 11 месяцев назад +39

    I got my first job today in programming thanks to your free courses. Love you bro!

  • @SaintWebby
    @SaintWebby 8 месяцев назад +5

    This course im taking is missing a lesson on ternary operators... came here. you're a much better teacher. Subbing and checking out more videos. THANKS!

  • @Haryad-nh5kc
    @Haryad-nh5kc 11 месяцев назад +4

    bro’s better than all of the bootcamps combined somehow

  • @isabsr
    @isabsr 10 месяцев назад

    Have an exam soon and you are saving my life. Thank you so much bro

  • @piotrmazgaj
    @piotrmazgaj 2 месяца назад

    This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.

  • @nguyengiorno9026
    @nguyengiorno9026 11 месяцев назад +2

    why so little view?

  • @helioobianchi
    @helioobianchi 6 месяцев назад

    Thanks, bro. You're a real bro 💪

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

    Your code visible problem .so, your code editor must be zoom .

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

    bro waiting for your React videos

  • @MrPvssy
    @MrPvssy 11 месяцев назад

    Daddy Brocode teaches me lots

  • @errap9523
    @errap9523 11 месяцев назад +2

    First 2 hours army ⬇️

  • @TheStRaX_
    @TheStRaX_ 11 месяцев назад

    Legends never die, ofcourse "BroCode" dont die

  • @tamekkaknuth9612
    @tamekkaknuth9612 11 месяцев назад

    Thank you

  • @AntarikshRajkonwar
    @AntarikshRajkonwar 2 месяца назад

    15/7/24 2:16am

  • @kevinmosala
    @kevinmosala 11 месяцев назад

    Your videos are very helpful and your teaching style is superb. Thanks bro👊🏽

  • @devabdul
    @devabdul 11 месяцев назад

    thanks for js course

  • @dhanushperumalla773
    @dhanushperumalla773 11 месяцев назад

    Hey broo upload React Vedios also 😊

  • @Gigglesaintlame
    @Gigglesaintlame 11 месяцев назад

    I’m on my second day.❤ Bro Code

  • @demonx_xgod
    @demonx_xgod 4 месяца назад

    THE ? CODE IS NOT WORKING