JavaScript NUMBER GUESSING GAME ↕

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

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

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

    // NUMBER GUESSING GAME
    const minNum = 1;
    const maxNum = 100;
    const answer = Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum;
    let attempts = 0;
    let guess;
    let running = true;
    while(running){

    guess = window.prompt(`Guess a number between ${minNum} - ${maxNum}`);
    guess = Number(guess);

    if(isNaN(guess)){
    window.alert("Please enter a valid number");
    }
    else if(guess < minNum || guess > maxNum){
    window.alert("Please enter a valid number");
    }
    else{
    attempts++;
    if(guess < answer){
    window.alert("TOO LOW! TRY AGAIN!");
    }
    else if(guess > answer){
    window.alert("TOO HIGH! TRY AGAIN!");
    }
    else{
    window.alert(`CORRECT! The answer was ${answer}. It took you ${attempts} attempts`);
    running = false;
    }
    }
    }

  • @DanielleScott-gh9bi
    @DanielleScott-gh9bi 8 หลายเดือนก่อน +4

    Wonderful! Thank you!!

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

    Great one! Thanks

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

    Your tutorials are amazing , easy to understand , Thanku BroCode

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

    Great explanation 💙

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

    Your tutorials are underrated ❤

  • @Kh-rf5fk
    @Kh-rf5fk ปีที่แล้ว

    Hey Bro, thanks for making these tutorials! You make them so easy to understand and follow. Are there also any books or resources you can recommend for further learning?

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

    Hey bro! I am waiting for other react tutorials or more complex javascript tutorials. I am waiting, no worries and lots of love ❤

  • @AbulKalam-800
    @AbulKalam-800 2 หลายเดือนก่อน

    Hey bro you tutorials are can easy understand ,,Thanks make this video❤

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

    Great tutorial! I just would like to point out for those like me who tried to integrate with it HTML and CSS, that LOOPS can not be used in that case. Or at least my personal experience. I tried to create an input field and a submit button but in that case I used a SWITCH to make it work.

    • @raghabpandit2610
      @raghabpandit2610 24 วันที่ผ่านมา

      can u comment the snippet?

  • @raghabpandit2610
    @raghabpandit2610 24 วันที่ผ่านมา

    For those who tried to execute it with HTML ,CSS And JS . Dont use any loop it will run normally

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

    Thank you!

  • @Snayder-dk2sn
    @Snayder-dk2sn ปีที่แล้ว

    Please, man , use a dark theme , perhaps , you explain it coolly , I studied html and css now I switched to javascript !

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

    Just FYI, theres an issue with the code. if we type 50, it recognizes the answer as correct ;=;

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

    I want a number guessing application that will come out on the interesting mall website✌

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

    1:00

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

    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.

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

    amazing video 👍🪿

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

    this code alone is not running. So do i need index.html and style.css for it to run??

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

      no u dont

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

    Hi Dear sir how are you doing I want to ask you something, I often forget the java code, what should I do to remember it?

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

    For me the ${} doesn’t do anything, it just prints that

    • @ARKGAMING
      @ARKGAMING 11 หลายเดือนก่อน +6

      Make sure you're using template literals for your strings if you want it to work(` instead of ' or "), since it's the only string quotes that support this kind of formatting

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

      are u using double qoutes or single qoutes ?? use ` ` these

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

      nd make sure they have some value of what are u writing in between { } in these

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

    bro likes pizza