Please enable JavaScript to use CodeHS

CodeHS Glossary


Method body Java

The part of the method that contains the commands

private void turnRight() {
    // All of this code inside the method is the method body
    turnLeft();
    turnLeft();
    turnLeft();
}