-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
42 lines (36 loc) · 1.54 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const button = document.getElementById('btn');
button.addEventListener('click', (ev) => {
ev.preventDefault()
const weight = parseInt(document.getElementById('weight').value);
const height = parseInt(document.getElementById('height').value);
const result = document.getElementById('result-bmi');
let weight_status = false;
let height_status = false;
if(weight === '' || isNaN(weight) || (weight <= 0)){
document.getElementById('weight_error').innerHTML = "Angka yang anda masukkan tidak valid";
}else{
document.getElementById('weight_error').innerHTML = ''
weight_status = true;
}
if(height === '' || isNaN(height) || (height <= 0)){
document.getElementById('height_error').innerHTML = "Angka yang anda masukkan tidak valid";
}else{
document.getElementById('height_error').innerHTML = ''
height_status = true;
}
if(height_status && weight_status){
let bmi = (weight / ((height / 100)^2)).toFixed(2);
if(bmi < 18.6){
result.innerHTML = `Your BMI is ${bmi}, which means You are Overweight`;
}else if(bmi >= 18.6 && bmi <= 24.9){
result.innerHTML = `Your BMI is ${bmi}, which means You are Normal`;
}else if(bmi >= 25 && bmi <= 29.9){
result.innerHTML = `Your BMI is ${bmi}, which means You are Overweight`;
}else{
result.innerHTML = `Your BMI is ${bmi}, which means You are Obesity` ;
}
}else{
alert("the form has errors");
result.innerHTML = '';
}
});