Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var speed = 65;
  2.  
  3. // Complete the condition in the ()s on line 4
  4. if (speed > 80) {
  5. // Use console.log() to print "Slow down"
  6. console.log("Slow down");
  7. }
  8. else (speed < 80);{
  9. // Use console.log() to print "Drive safe"
  10. console.log("Drive safe");
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement