### Variable and Function Casing Example Source: https://github.com/t-rizzle12/lethal-bots/blob/master/CONTRIBUTING.md Illustrates the preferred casing for variable, argument, and function names. Use UpperCamelCase for functions and lowerCamelCase for variables and arguments. ```javascript var myResult = myObject.MyMethod( myArgument ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.