js/4/ifelse.html

17 lines
284 B
HTML
Raw Permalink Normal View History

2024-09-17 14:41:00 -05:00
<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>