12 lines
201 B
HTML
12 lines
201 B
HTML
<html>
|
|
<body>
|
|
<script> let speed = 30;
|
|
|
|
console.log(`Your current speed is ${speed} mph.`);
|
|
|
|
if (speed > 25) {
|
|
|
|
console.log("Slow down!");
|
|
|
|
}
|
|
</script></body></html> |