We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8cdef commit b3c6e4dCopy full SHA for b3c6e4d
Height Converter/script.js
@@ -60,7 +60,7 @@ function heightConverter() {
60
} else if (firOpt == "Kilometers" && secOpt == "Inches") {
61
finalOutput.innerHTML = height * 39370;
62
}
63
- //Validates for Milligram
+ //Validates for Meters
64
else if (firOpt == "Meters" && secOpt == "Miles") {
65
finalOutput.innerHTML = height / 1609;
66
} else if (firOpt == "Meters" && secOpt == "Kilometers") {
@@ -93,4 +93,4 @@ function reset() {
93
document.getElementById('mainForm').reset();
94
document.getElementById('output').style.visibility = 'hidden';
95
document.getElementById('resetButton').style.visibility = 'hidden';
96
-}
+}
0 commit comments