js/4/while.html

11 lines
195 B
HTML
Raw Normal View History

2024-09-17 14:41:00 -05:00
<html>
<body>
<script>
let speed = 50;
while (speed > 25) {
console.log(`Your current speed is ${speed} mph.`);
speed--;
}
console.log(`Now your speed is ${speed} mph.`);
</script></body></html>