Skip to content

Instantly share code, notes, and snippets.

@Jorger
Created July 12, 2017 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jorger/917f359261d21f827847fcd2b02565b4 to your computer and use it in GitHub Desktop.
Save Jorger/917f359261d21f827847fcd2b02565b4 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/kepiwuv
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
var pesoEnKilogramos = 80;
var estaturaEnCentimentos = 180;
var estaturaEnMetros = estaturaEnCentimentos / 100;
var IMC = pesoEnKilogramos / (Math.pow(estaturaEnMetros, 2));
console.log("Peso = " + pesoEnKilogramos + " (KM)");
console.log("Estatura = " + estaturaEnMetros + " (Metros)");
console.log("IMC = " + Math.round(IMC));
</script>
<script id="jsbin-source-javascript" type="text/javascript">var pesoEnKilogramos = 80;
var estaturaEnCentimentos = 180;
var estaturaEnMetros = estaturaEnCentimentos / 100;
var IMC = pesoEnKilogramos / (Math.pow(estaturaEnMetros, 2));
console.log("Peso = " + pesoEnKilogramos + " (KM)");
console.log("Estatura = " + estaturaEnMetros + " (Metros)");
console.log("IMC = " + Math.round(IMC));
</script></body>
</html>
var pesoEnKilogramos = 80;
var estaturaEnCentimentos = 180;
var estaturaEnMetros = estaturaEnCentimentos / 100;
var IMC = pesoEnKilogramos / (Math.pow(estaturaEnMetros, 2));
console.log("Peso = " + pesoEnKilogramos + " (KM)");
console.log("Estatura = " + estaturaEnMetros + " (Metros)");
console.log("IMC = " + Math.round(IMC));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment