JSFiddle - React, Tailwind, and code Playground

by wllai2001

HTML

<body ng-app>
    BMI = 體重 (kg) / 身高 (m^2)<br>
    
身高: <input type="number" ng-model="height" ng-init="height = 1.70" step="0.01">
<br>
體重: <input type="number" ng-model="weight" ng-init="weight = 70" step="0.1">
<br>
BMI值: {{ weight / (height * height) }}
    </body>

JavaScript

/*計算BMI*/