What is a Method?

Why Use Methods?

Method Declaration Syntax

accessModifier [static] returnType methodName(parameterList) {
    // method body
    // optionally return a value
}

Simple Method Example