Calcular peso ideal para hombres y mujeres

PHOTO EMBED

Tue Nov 29 2022 16:00:20 GMT+0000 (Coordinated Universal Time)

Saved by @modesto59 #html

/* function to calculate the ideal weight from males and female */
function idealWeight(height, gender) {
  if (gender == 'male') {
    return (height - 100) * 0.9;
  } else {
    return (height - 100) * 0.85;
  }
}
content_copyCOPY