Hello, my code is
But it keeps prompting "Slow down" instead. Am I misinterpreting the <= and > part? Thanks in advance.
<code tags added by administrator>
Java:
var speed = 65;
// Complete the condition in the ()s on line 4
if (speed <= 80) {
// Use console.log() to print "Slow downc
console.log("Slow down")
} else {
// Use console.log() to print "Drive safe"
console.log("Drive safe")
}
<code tags added by administrator>