11 lines
195 B
HTML
11 lines
195 B
HTML
|
<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>
|