BMI Calculator | Javascript Beginner Project Tutorial

Поділитися
Вставка
  • Опубліковано 26 сер 2024
  • 📌 In this episode we will learn how to create a BMI Calculator with html, css and javascript.
    📢 Subscribe if you want more Javascript Beginner Project Tutorials
    👍 Leave a like if you enjoyed it
    📢 If you have feedback or suggestions for projects that I could build, please tell me in the comments below.
    🕹 For the Demo visit:
    🔗/
    ⚜ For the Source Code and other Javascript Beginner Projects visit my GitHub Page: ⚜
    ▶️ github.com/lea...
    📋 Here is the List of all my Javascript Beginner Project Tutorials:
    ➡️ 1. Change Background Color on click:
    🔗 • Change Background colo...
    ➡️ 2. Change Image on Click
    🔗 • Change Image on a clic...
    ➡️ 3. Word Length Calculator
    🔗 • Word Length Calculator...
    ➡️ 4. Simple Counter
    🔗 • Simple Counter | Javas...
    ➡️ 5. Random Quote Generator
    🔗 • Random Quote Generator...
    ➡️ 6. Number Guessing Game
    🔗 • Number Guessing Game |...
    ➡️ 7. Show Day of the Week
    🔗 • Number Guessing Game |...
    ➡️ 8. Height Converter
    🔗 • Meter to Feet Converte...
    ➡️ 9. Weight Converter
    🔗 • Weight Converter | Jav...
    ➡️ 10. BMI Calculator
    🔗 • BMI Calculator | Javas...
    📼 Full Playlist with all Javascript Tutorials:
    🔗 bit.ly/2RbwdWz
    #javascript #beginner #projects #tutorial #html #css #coding #sourcecode #cssgrid #cssflexbox #code #webdevelopment #frontend #dev #BMICalculator

КОМЕНТАРІ • 6

  • @CodePhilipYT
    @CodePhilipYT  4 роки тому +4

    ❤️ Leave a like and subscribe if this video helped you, also give me feedback and suggestions for more projects! ❤️
    ▶️ For the Source Code and more Tutorials take a look in the description
    ⏱ Timestamps:
    HTML Part: 0:17
    CSS Part: 3:50
    Javascript Part: 11:30

  • @shubhamarora547
    @shubhamarora547 4 роки тому +3

    very nice explanation sir thanks happy to follow ur tutorials

    • @CodePhilipYT
      @CodePhilipYT  4 роки тому +1

      Thank you, more tutorials will follow :)

  • @rabi-
    @rabi- 3 роки тому

    This video was good enough for the beginner. But maybe it will be better a bit more if the sound would be louder. Thank you

  • @ljudiurobi
    @ljudiurobi 3 роки тому +1

    // I did it a bit different cause the number 10 000 confuses me:
    weight = document.getElementById('weight-input').value;
    height = document.getElementById('height-input').value / 100;
    finalBmi = weight / (height * height);