So it says that i need my code to be under 6 statements ,but clearly it is can someone help it would be great.
// The code in this loop will repeat forever.
while (true) {
// Move right
this.moveRight(1);
// Move up
this.moveUp(1);
// Move left
this.moveLeft(1);
// Move down
this.moveDown(1);}
I put the following prior to finding this thread and it is giving me the error, “ReferenceError: True is not defined.” can you tell me what I am doing wrong?
It depends on your programming language. Boolean value names (true/false) are not capitalized in JavaScript, Lua, CoffeeScript and ClojureScript; they are capitalized in Python.