subject

CodeHS debugging lesson:
I keep getting the syntax error 'Expected: ';'' but everything that needs a semicolon has one. What am I missing?
function start(){
for(var i = 0; i < 13; i++){
if(frontIsBlocked()){
jumpHurdle();
}else (frontIsClear()){
move();
}
}
}
function jumpHurdle(){
turnLeft();
move();
turnRight();
move();
turnRight();
move();
turnLeft();
}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 12:00
What type of slide show is a dynamic and eye-catching way to familiarize potential customers with what your company has to offer? a. ole b. photo album c. brochure d. office clipboard
Answers: 2
question
Computers and Technology, 23.06.2019 21:50
Description: write function lastfirst() that takes one argument—a list of strings of the format "lastname, firstname" —and returns a list consisting of two lists: (a) a list of all the last names (b) a list of all the first names
Answers: 2
question
Computers and Technology, 24.06.2019 11:30
Why is body language an important factor in a business meeting
Answers: 1
question
Computers and Technology, 24.06.2019 22:00
According to your study unit, what is the main reason that improved human relations skills may improve your grades?
Answers: 1
You know the right answer?
CodeHS debugging lesson:
I keep getting the syntax error 'Expected: ';'' but everything that n...
Questions