If Statements | Javascript | Tutorial 16

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

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

  • @gery_3585
    @gery_3585 9 месяцев назад

    Man your are the number one teacher,fkn amazing work dude..

  • @abdulhamidmuktar9763
    @abdulhamidmuktar9763 3 года назад +7

    Your way of teaching is Amazing!!

  • @simbaevans.3301
    @simbaevans.3301 5 месяцев назад

    finished watching Tutorial 16.Thanks to Mike

  • @monfernape
    @monfernape 6 лет назад +36

    I look at JS tutorial
    If it's made by Mike,
    I'll watch it.
    Otherwise,
    I'll pass it.

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

    Keep the spirit up it's amazing

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

    really well explained

  • @preetikabra5737
    @preetikabra5737 3 года назад

    Mike ir best developer and teacher i learned html css and now js

  • @fatimabartels7447
    @fatimabartels7447 4 года назад +3

    How to do this with function?

  • @kidanehailemichael9203
    @kidanehailemichael9203 4 года назад +5

    It is nice video for beginners Mike.
    Just a friendly reminder it is good to avoid words like complex, complicated etc.

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

    Thank you Mike. You are great.

  • @sonamuhialdeen7866
    @sonamuhialdeen7866 3 года назад +1

    So good tutorial

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

    I was only able to use "else" when there was one either/or condition. Once there were four conditions, I had to write "else if" for the send, third, and fourth condition. I couldn't write the last condition with just "else". When I did, nothing showed up on the html page.

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

    Nice

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

    Legend!

  • @mahdi3521
    @mahdi3521 3 года назад

    good!

  • @Daaboo
    @Daaboo 3 года назад

    there is glitch at 6:13 . is Mike hacking the matrix?

  • @vadrif-draco
    @vadrif-draco 5 лет назад +6

    if(isMale) {
    document.write("You are male");
    } else {
    document.write("You are female");
    }
    *