JavaScript ARITHMETIC OPERATORS in 8 minutes! ➕

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

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

  • @BroCodez
    @BroCodez  ปีที่แล้ว +5

    // arithmetic operators = operands (values, variables, etc.)
    // operators (+ - * /)
    // ex. 11 = x + 5;
    let students = 30;
    //students = students + 1;
    //students = students - 1;
    //students = students * 2;
    //students = students / 2;
    //students = students ** 2;
    //let extraStudents = students % 3;
    console.log(students);
    //students += 1;
    //students -= 1;
    //students *= 2;
    //students /= 2;
    //students **= 2;
    //students %= 2;
    //students++;
    //students--;
    /*
    operator precedence
    1. parenthesis ()
    2. exponents
    3. multiplication & division & modulo
    4. addition & subtraction
    */

  • @MikitaYT
    @MikitaYT 10 หลายเดือนก่อน +25

    Because of you, now I simply love programming, without you I would just keep playing and not create such things. Thank you very much :)

  • @jankarl5269
    @jankarl5269 7 หลายเดือนก่อน +2

    Better than every JavaScript course I took!

  • @_sf_editz1870
    @_sf_editz1870 10 หลายเดือนก่อน +6

    Sensei ❤❤ please continue the js and react please if possible make a project on react

    • @BroCodez
      @BroCodez  10 หลายเดือนก่อน +2

      ok

    • @_sf_editz1870
      @_sf_editz1870 10 หลายเดือนก่อน +1

      @@BroCodez 🤝💖

  • @Cocodrillo3011
    @Cocodrillo3011 27 วันที่ผ่านมา

    Such a helpful video to refresh my knowledge. This is better than the course i took. Great vid!

  • @SamirNeupaneChhetri-cq2wb
    @SamirNeupaneChhetri-cq2wb 9 หลายเดือนก่อน +2

    you are genius. I love your content .❤

  • @JeromyDBall
    @JeromyDBall 5 หลายเดือนก่อน +2

    Bro Code is the GOAT

  • @abdulwahid-gi7rx
    @abdulwahid-gi7rx หลายเดือนก่อน

    bro never forgets to make the video exciting

  • @xzex2609
    @xzex2609 10 หลายเดือนก่อน +2

    Bro you are the best teacher I have ever seen I learn lots of things from you , you know Albert Einstein has something he called the biggest blunder of his life , I think you've got your biggest blunder of your life in this video , Do you really need calculator for 2**7 ? we know 2**16 = 65535 2**15 = 32728 ... 2**8=256 ,,, 2 ** 7 =127 these numbers are what we know without using a calculator

    • @BroCodez
      @BroCodez  10 หลายเดือนก่อน +1

      what?

    • @EledeRR
      @EledeRR 10 หลายเดือนก่อน

      Lmao

    • @xzex2609
      @xzex2609 10 หลายเดือนก่อน

      @@BroCodez You got to admit that for a computer genius like yourself it's impossible for them that they didn't memorize the exponents of 2 since they mostly working in binary numeric system.
      Once again I can not express my appreciation for your channel and what it means for me . I did learn 4 languages from you and this is the second time I learn java script from you and I think if you learn it today it must be from the best view you got from this language . I am a python developer who want to work the frontend web in javascript.

    • @a.1023
      @a.1023 9 หลายเดือนก่อน

      ​@@xzex2609Viewers may vary in intellectual levels, so teachers aim to simplify topics for better understanding dude:(

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

      what?????????????????????????? impossible !!!!!!!!!!!!!!!!

  • @RandomGuyOnDaFreakingNet
    @RandomGuyOnDaFreakingNet 10 หลายเดือนก่อน +4

    thumbnail : rizz++
    me : rizz++
    "why isn't that working"

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

    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.

  • @chibuezealaekwe4212
    @chibuezealaekwe4212 5 หลายเดือนก่อน

    You are the best teacher, thanks bro code

  • @imrane206
    @imrane206 3 หลายเดือนก่อน

    Great

  • @anassbenomar748
    @anassbenomar748 9 หลายเดือนก่อน +1

    please could you add angular course !!! please ☺☺😊

  • @helioobianchi
    @helioobianchi 5 หลายเดือนก่อน

    Thanks, bro. You're a real bro 💪

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

    as always Bro code explains it easily

  • @noicefrog
    @noicefrog 4 หลายเดือนก่อน

    i think ill use vs code to do my homework, i mean its like a calculator but it looks cool

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

    rizz++💀💀💀

  • @ovibawovi
    @ovibawovi 2 หลายเดือนก่อน

    why is the thumbnail.... Not even askinf

  • @medad1877
    @medad1877 10 หลายเดือนก่อน

    how 12 % 5 become = 2 , I solve it and the last thing I found 2.4
    please help me to understand this

    • @BroCodez
      @BroCodez  10 หลายเดือนก่อน +2

      % gives you the remainder