This page is a work in progress.You can help improve it. →

Terminology

TermDefinition
MethodA block of code that performs a function.
InputAlso known as parameters, These are the information the method needs from the code using it. These
are surrounded by parentheses and are separated by commas. Empty parentheses indicate that the method has no parameters.
Workbody of the method composed of lines of code.
OutputKnown as the return type. The void type is used if the
method doesn't return anything.
returnThis statement tells the method to stop processing and return
whatever information is in the supplied variable.
Pascal Case (capital case)If the method name would be multiple words in a normal sentence we remove the spaces and capitalize the
beginning of each word.
© 2017 - 2022; Built with ♥ in St. Petersburg, Florida.