Build this JS calculator in 15 minutes! 🖩

Поделиться
HTML-код
  • Опубликовано: 20 май 2024
  • #JavaScript #tutorial #course
    IMPORTANT NOTE: eval() allows you to execute a string of code as if it were actual JavaScript code.
    While it is a useful tool, it is a security risk. I would recommend using eval() ONLY for learning purposes and not any actual production code.
    00:00:00 HTML
    00:03:08 CSS
    00:11:21 JavaScript
    This is a JavaScript project program for beginners where we will build a functioning calculator. Impress your friends!

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

  • @BroCodez
    @BroCodez  5 месяцев назад +127

    IMPORTANT NOTE: eval() allows you to execute a string of code as if it were actual JavaScript code.
    While it is a useful tool, it is a security risk. I would recommend using eval() ONLY for learning purposes and not any actual production code.
    // CALCULATOR PROGRAM
    const display = document.getElementById("display");
    function appendToDisplay(input){
    display.value += input;
    }
    function clearDisplay(){
    display.value = "";
    }
    function calculate(){
    try{
    display.value = eval(display.value);
    }
    catch(error){
    display.value = "Error";
    }
    }


    Document




    +
    7
    8
    9
    -
    4
    5
    6
    *
    1
    2
    3
    /
    0
    .
    =
    C



    body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(0, 0%, 95%);
    }
    #calculator{
    font-family: Arial, sans-serif;
    background-color: hsl(0, 0%, 15%);
    border-radius: 15px;
    max-width: 500px;
    overflow: hidden;
    }
    #display{
    width: 100%;
    padding: 20px;
    font-size: 5rem;
    text-align: left;
    border: none;
    background-color: hsl(0, 0%, 20%);
    color: white;
    }
    #keys{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 25px;
    }
    button{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: none;
    background-color: hsl(0, 0%, 30%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    }
    button:hover{
    background-color: hsl(0, 0%, 40%);
    }
    button:active{
    background-color: hsl(0, 0%, 50%);
    }
    .operator-btn{
    background-color: hsl(35, 100%, 55%);
    }
    .operator-btn:hover{
    background-color: hsl(35, 100%, 65%);
    }
    .operator-btn:active{
    background-color: hsl(35, 100%, 75%);
    }

    • @skappy2000
      @skappy2000 5 месяцев назад +11

      Hey bro code big fan here
      I was thinking will you make website projects using html, css and js?
      It will help a lot with people understanding more better in that way
      Portfolio-worthy projects

    • @mirmumit3888
      @mirmumit3888 3 месяца назад

      Can u plz tell me, how to change the only color of the text "Error" on the calculator display?

    • @skappy2000
      @skappy2000 3 месяца назад

      ​@@mirmumit3888
      Use the display.style.color property in script.js file
      function calculate(){
      try{
      display.value = eval(display.value);
      display.style.color = 'white'; // Set text color to white after successful calculation
      }
      catch(error){
      display.value = "Error";
      display.style.color = 'red'; // Set text color to red for error message
      }
      }

    • @SiiamW
      @SiiamW 3 месяца назад +4

      Hey clicking ''." more than once is an error too. this program is slightly wreaked.

    • @oli3641
      @oli3641 3 месяца назад +1

      @@SiiamW well obviously, because 2..4 is not a valid float or integer

  • @alvinderama3196
    @alvinderama3196 5 месяцев назад +173

    Watching something being created from scratch is pretty entertaining and educational.

  • @watchdoggie8145
    @watchdoggie8145 Месяц назад +4

    Super thankful for the awesome instructions! keep up the good work.

  • @f4sma
    @f4sma 26 дней назад +1

    Your tone of the voice, the way you explain what you are doing.. it's perfect. Subbed!

  • @vc6218
    @vc6218 15 дней назад

    one of the few videos on here that breaks it down simply. I already understood a bit of html and css - javascript hasn't made that much sense to me until now. Thank you!

  • @doronfeldman5152
    @doronfeldman5152 5 месяцев назад +53

    You have the best programming channel, I learn html, css, javascript and python in your channel

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

    Another useful video! I am waiting for more ;)

  • @user-ko6hz5lq1d
    @user-ko6hz5lq1d 8 дней назад

    After seeing other videos of writing the code for Calculator app, I find yours the best and easy to understand and needs less lines of code. Thank you very much for uploading this.

  • @Nanashi_29
    @Nanashi_29 2 месяца назад +4

    Best channel about programming

  • @syroxdxd
    @syroxdxd Месяц назад

    I just have to say that you are amazing. I had an introduction class in java and I missed every lecture. I whatched the first 5 hours of your 12hr java course and I passed the exam. You are an amazing teacher. Better than the ones I have at univerity :)

  • @muhammet_05
    @muhammet_05 5 месяцев назад +7

    Thanks for those teaching video. i love it ❤

  • @pope1089
    @pope1089 2 месяца назад +23

    Just started coding, That video helped alot. Straight to the point. I,ll have to check your other videos out before i start asking questions about eval() ans security risks. Thanks

    • @yateen-hi9er
      @yateen-hi9er 2 месяца назад +1

      share some resorses with i am a beginner too

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

    Few codes but precised. I'm amazed bro.

  • @naglakandeel3152
    @naglakandeel3152 Месяц назад

    best teacher ever continue ❤

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

    You're the best teacher ❤

  • @petersimthobele
    @petersimthobele 2 месяца назад +1

    I learnt a lot from this video in 15 min 👏👌

  • @Newbtube92
    @Newbtube92 2 дня назад

    Great tutorial!

  • @hurricanos13
    @hurricanos13 5 месяцев назад +1

    One of the best coding channel aside with the legendary new boston Bucky Roberts. but i think this channel stuff is also hated by youtube algorithms

  • @12karmel12
    @12karmel12 5 месяцев назад

    thank you for making daily javascript videos

  • @mohsenvanc
    @mohsenvanc Месяц назад

    that is amazing, thank you

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

    thankyou for such a useful content.

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

    you literally give me confidence

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

    your style' css so good , it very butufu

  • @TheRealKingofCubing
    @TheRealKingofCubing Месяц назад

    This is teaching me so much amazing video

  • @armandopena5508
    @armandopena5508 2 месяца назад +1

    I was hopping to see how you made the actual calculation taking into account that eval is not safe, it would be awesome if you could share how to make a function that at least calculates some basic mathematical operations since this is a very basic project that many people who are starting in programming make, usually without adding the funcitonality, when parsing the math operation is the most important thing of this project!. Great content!

    • @shjsbsbs7186
      @shjsbsbs7186 Месяц назад

      Agree, eval is not safe for newbie

    • @larslover6559
      @larslover6559 Месяц назад

      Theres several nice tutorial on python to make calculator without the eval function. There you really see it hard coded from scractch!

  • @Inke7
    @Inke7 5 месяцев назад

    Thank you kind sir!

  • @mmafights__
    @mmafights__ 3 месяца назад

    soooooo useful thankssssss❤❤

  • @paraglide01
    @paraglide01 5 месяцев назад +2

    Wauw, thanks man this is great. Making a calculator creates so many ideas for apps that need input and calculating.

  • @manueldiegoalexander3879
    @manueldiegoalexander3879 5 месяцев назад

    Thanks this is crazy,i like it bro.

  • @neerajmeka25
    @neerajmeka25 2 месяца назад +1

    Great Project had fun to build this project, u got a new sub will check your more videos

  • @nazmussakib9346
    @nazmussakib9346 Месяц назад

    Thank you...❤

  • @sogwafl
    @sogwafl 5 месяцев назад +32

    I have a terrible Java Professor, cant retain an oz of her teaching. So I exclusively built my own syllabus off your java topic vids and passed. You are doing gods work and are great at helping my dumbass retain all this info.

    • @ent.8979
      @ent.8979 5 месяцев назад +5

      youre not a dumbass, some teachers just don't know how to teach and make the subject impossible to understand. And that's mostly college professor. That's why learning from the internet is becoming more and more valid

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

      @@ent.8979facts, attending college literally for the degree

    • @lintee_12
      @lintee_12 3 месяца назад +1

      @@ent.8979 i mean its probably because he was getting taught real programming fundamentals... he didn't even know that this was javascript not java

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

    Very nice video
    Thanks!!

  • @hunin27
    @hunin27 5 месяцев назад +1

    Thanks!!!

  • @ZXOT14
    @ZXOT14 26 дней назад

    I don't understand code that well but something about his videos is just so therapeutic.

  • @habibousy8723
    @habibousy8723 7 дней назад

    GREAT I'm senegalese and my english is not perfect but I learn a lot because of you😎😎😎. My javascript futur will be bright with you😎😎

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

    super cool, thank's a lot

  • @mikesougly
    @mikesougly Месяц назад

    Thank you 🙏

  • @coderprakash
    @coderprakash 5 месяцев назад

    Hi please make a complete tutorial on typescript 🙏 i followed ur javascript and react thanks alot ❤️🔥 love from India, I know Frontend development because of u please consider my request and make typescript full tutorial

  • @PurplexSKyo
    @PurplexSKyo 5 месяцев назад +6

    Hello Bro Code
    I love your videos, I try to learn C by looking your videos and its amazing
    I know its a litter bit late for tell you this but can you please do a tutorial learn Lua please if its don't mind you
    Thanks you for having the time to look the lines and keep continute
    I love your videos👍🏾👍🏾

    • @mcpigeon6908
      @mcpigeon6908 5 месяцев назад +2

      yes I'd love to learn Lua too :)

  • @CharukaRanathunga-bi6fy
    @CharukaRanathunga-bi6fy 2 месяца назад

    thank you 👍

  • @user-un9fs3oj5r
    @user-un9fs3oj5r 2 месяца назад

    thenkyou very much

  • @kursatepik5197
    @kursatepik5197 5 месяцев назад

    you are a hero brother

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

    So educational video ever seen

  • @omidrezafeizi3530
    @omidrezafeizi3530 Месяц назад

    very informative

  • @ciro3857
    @ciro3857 7 дней назад

    Thank u lad

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

    so cool thanks bro

  • @siampro3891
    @siampro3891 4 месяца назад +1

    BEST👍👍👍👍

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

    Sir, I think we are due a database tutorial.
    I was tryna learn on MariaDB since it was free but couldn't get anywhere without your detailed guide.

  • @n.n.g2230
    @n.n.g2230 2 месяца назад

    yo bro code, thanks as always for a great video and motivation to study!

  • @zahersankari7342
    @zahersankari7342 17 дней назад

    Why so simple?!?
    Thanks!

  • @user-xj7te3qs8u
    @user-xj7te3qs8u 5 месяцев назад

    Great 😊 😊😊

  • @hunin27
    @hunin27 5 месяцев назад +13

    Wow, then what we are doing is pretty much just styling. I had no idea javascript had a "built-in" calculator inside of a function!!

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

      eval() runs a JS expression dynamically at runtime. It can be a security risk tho

    • @hunin27
      @hunin27 5 месяцев назад

      oh, well im pretty sure its not that hard to make a calculator without using it. i mean eval is a function and we could just recreate it@@BroCodez

    • @lelin4732
      @lelin4732 3 месяца назад

      You can have 100 years of JS experience but still be encountering something damn new 💀 Just a beauty of coding

  • @technicalresi5451
    @technicalresi5451 5 месяцев назад

    Very nice bro 😊❤

  • @vitorh.4567
    @vitorh.4567 13 дней назад

    awesome video

  • @wonders8410
    @wonders8410 Месяц назад +2

    Hey just want to let you know that there is an error in the code that you have presented if you do 7+ =you know it equals an error but that error is a text and you can do something like Error + 7 = FUNCTION ERROR() {[NATIVE CODE]}

  • @slender2128
    @slender2128 5 месяцев назад

    Good Video ❤🎉

  • @StephenColeman-yj5vo
    @StephenColeman-yj5vo 28 дней назад

    Amazing

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

    Nice!

  • @subhro3044
    @subhro3044 4 месяца назад +1

    Yo thanks for the video tutorial as someone who's starting out with coding HTML this was super fun to do as a project
    Just one question though when I tried to replicate it and open the index.html file as *Open with Live Server* I'm just getting the basic buttons that was done at the start
    Am I opening/running it the wrong way?

    • @Kokoclouds
      @Kokoclouds 2 месяца назад +1

      same here for me, i dunno what i'm doing wrong either. checked all the line, everything matches but still not getting the round buttons

  • @leobertobittencourtfilho3036
    @leobertobittencourtfilho3036 Месяц назад

    I wish (and I'm trying to) that I could code at this level. Honestly!

  • @RahulBhatia-py1iv
    @RahulBhatia-py1iv Месяц назад

    U are legend 😅mann

  • @danielbeeber5587
    @danielbeeber5587 18 дней назад

    Awesome

  • @cheaterlp23
    @cheaterlp23 Месяц назад

    My version didn't work, so I searched for a while.
    Guess what the error was.
    Correct:
    My version:
    =_=
    Anyway, really useful video, learned a lot.

  • @user-id5vh7rq3j
    @user-id5vh7rq3j 4 месяца назад +3

    I think this was the easiest calculator build and explanation from any other youtube channel

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

      Was about to comment this yesterday it is the best

  • @moontvdyyds6846
    @moontvdyyds6846 14 дней назад

    thanks lots

  • @user-ej4vt2vg4o
    @user-ej4vt2vg4o 2 месяца назад

    you know that your the best yeah

  • @hada31
    @hada31 27 дней назад

    function calculate() {
    try {
    display.value = math.evaluate(display.value);
    } catch (error) {
    display.value = "Error";
    }
    }

  • @cristiandalessandro599
    @cristiandalessandro599 5 месяцев назад

    Are all these videos going to be part of an updated full course?

  • @_rezalet_kanal_
    @_rezalet_kanal_ 5 месяцев назад

    entertaining af

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

    can we do a bubble we can write on it and with a option to add other or delete it? and see it on a 3 D?

  • @nurialsaeed5769
    @nurialsaeed5769 5 месяцев назад

    great

  • @delhiwarriorgaming2882
    @delhiwarriorgaming2882 4 месяца назад +1

    sir, i am also practicing that code but I have a problem with the clear button, when I am clicking it nothing happens.....pls solve it..

  • @FijiAura_GD
    @FijiAura_GD 5 месяцев назад

    Hi Bro Code, can you do a Lua full course?

  • @kapteinoliver
    @kapteinoliver 3 месяца назад

    👏👏👏👏

  • @darkslopegaming6855
    @darkslopegaming6855 5 месяцев назад +1

    Do you have a patreon or something? I would love to support you!

  • @crackllitos1577
    @crackllitos1577 3 месяца назад

    This video was very helpful, but is there a way were I can make the calculator into mobile mode?

  • @Oh_Sayang
    @Oh_Sayang 5 месяцев назад +1

    Now my iPad can finally have a calculator app lol

  • @Aliahmadi-fn5of
    @Aliahmadi-fn5of 3 месяца назад

    Nice 🤌 for you

  • @user-yl2lp9ey1x
    @user-yl2lp9ey1x 3 месяца назад

    thank you for this video....mine is showing "ncaught ReferenceError: appendToDisplay is not defined"

  • @MinChen-bg6dc
    @MinChen-bg6dc Месяц назад

    Giga can teach programming

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

    welldone @BroCode same is not working for me......thanks for the good work.

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

    Hi! I have a question! Why is it that the appendToDisplay function only works when I remove type="module" within my script tags in the HTML document?

  • @strategistaow3520
    @strategistaow3520 5 месяцев назад

    Calculator is easy thing
    Can you make 3d space like in games?

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

    How would you bind the calculator to your pc number pad.

  • @thegoldgamer6339
    @thegoldgamer6339 3 месяца назад

    bro knows 4 programming languages bros a god

  • @sugam_upadhyay
    @sugam_upadhyay Месяц назад

    AppendtoTodisplay is not defined error is coming in code now what to do next sir❤

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

    Can u plz tell me, how to change the only color of the text "Error" on the calculator display?

  • @tjarrows14
    @tjarrows14 Месяц назад

    Just curious how you get your project to update in ream time? I have to stop it and rerun it every time to check out a new change I made in the css. I use visual code studio as well. Thank you.

  • @zzumiittow
    @zzumiittow 3 месяца назад

    In my case, the JavaScript code only works if I declare the const “display” inside the appendToDisplay function, why is that? I tried using the exact same code and it didn’t work, that doesn’t make sense.

  • @jamesdillard4114
    @jamesdillard4114 Месяц назад

    what could we use instead of eval?

  • @elitetatsuya
    @elitetatsuya 4 месяца назад +1

    iPadOS developers should watch this

  • @capslock3250
    @capslock3250 5 месяцев назад

    Full Kotlin course please 🙏

  • @pastori2672
    @pastori2672 5 месяцев назад +2

    how would you implement stuff like factorial and log etc.. ?

    • @thecoolnewsguy
      @thecoolnewsguy 5 месяцев назад +2

      For log, use the built-in Math object, for factorial, look for an algorithm on the internet or a library

  • @mhd_Code
    @mhd_Code Месяц назад

  • @ForuXe
    @ForuXe 3 месяца назад +1

    When i click on numbers, nothing appears on display. I checked several times, what could it be ?

  • @shauryacode76
    @shauryacode76 3 месяца назад +1

    Can you please tell me why my clear display isn’t working

  • @navabharathi810
    @navabharathi810 3 месяца назад

    Bro 😈😈 you are a gem

  • @oluwafemiadesope2815
    @oluwafemiadesope2815 Месяц назад

    My appendToDisplay function doesn’t show my values when I click on them, any ideas what’s wrong?

  • @mohammedAli7106
    @mohammedAli7106 5 месяцев назад

    Bro next video do chess game in java