Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Variables - Naming

  • Lower-case variables are scoped to the current package.

  • Upper-case variables are exported from the package and globally visible.

  • Block-scoped variables (e.g. in a function) are only visible in the block.

  • camelCase for private name

  • PascalCase for public names

  • Special case when part of the name is an acronym:

  • theURL

  • theHTML