17 lines
284 B
HTML
17 lines
284 B
HTML
<html><body><script>
|
|
|
|
let speed = 20;
|
|
|
|
console.log(`Your current speed is ${speed} mph.`);
|
|
|
|
if (speed > 25) {
|
|
|
|
console.log("Slow down!");
|
|
|
|
} else {
|
|
|
|
console.log("You're obeying the speed limit.");
|
|
|
|
}
|
|
|
|
</script></body></html> |